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": 2, "name": "Work Mode", "short_name": "Work Mode", "version": "1.0", "description": "This extension lets you enter 'Work Mode' with a click, blocking your chosen distracting websites.", "browser_action": { "default_icon": "workmode_off.png", "default_popup": "popup.html" }, "icons": { "16": "icons\/workmode_16.png", "48": "icons\/workmode_48.png", "128": "icons\/workmode_128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "storage", "tabs" ], "options_page": "options\/options.html", "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "run_at": "document_start" } ] }