Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "FocusBlock: Website Blocker & Pomodoro Timer", "version": "1.0.0", "description": "Lightweight and open source extension to block distracting websites and enhance productivity!", "icons": { "128": "icons\/128x128.png", "1024": "icons\/icon.png" }, "background": { "service_worker": "service-worker.js", "type": "module" }, "action": { "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/icon.png", "icons\/lotus.svg", "icons\/dangerous.svg", "font\/Inter-Regular.ttf", "font\/Inter-Medium.ttf" ], "matches": [ "<all_urls>" ] } ], "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "permissions": [ "storage", "activeTab" ] }