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": "Focus Guard - Website Blocker",
"version": "1.0.0",
"description": "Boost productivity by blocking distracting websites",
"permissions": [
"storage",
"tabs",
"webNavigation",
"alarms"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background\/background.js",
"type": "module"
},
"action": {
"default_popup": "popup\/popup.html",
"default_title": "Focus Guard",
"default_icon": {
"16": "assets\/icon-16.png",
"48": "assets\/icon-48.png",
"128": "assets\/icon-128.png"
}
},
"options_ui": {
"page": "options\/options.html",
"open_in_tab": true
},
"icons": {
"16": "assets\/icon-16.png",
"48": "assets\/icon-48.png",
"128": "assets\/icon-128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/block-notification.js"
],
"run_at": "document_start"
}
]
}