Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Lock In",
"version": "2.0.2",
"description": "Maximize your productivity by locking into one task at a time while blocking out distractions and getting motivated",
"action": {
"default_popup": "popup.html"
},
"permissions": [
"storage",
"alarms",
"notifications",
"tabs",
"offscreen",
"webRequest",
"activeTab",
"tabs",
"identity"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"youtubeContentScript.js"
]
}
],
"icons": {
"48": "icons\/lock-46.png",
"96": "icons\/lock-96.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"blocked.html"
],
"matches": [
"<all_urls>"
]
}
]
}