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", "name": "Focus", "version": "0.1.0", "manifest_version": 2, "browser_action": { "default_popup": "popup.html", "default_title": "Focus" }, "description": "Focus is a browser extension to help you focus while using your browser.", "icons": { "128": "focus_128.png" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "check.js" ], "run_at": "document_start" } ], "permissions": [ "storage" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "options_ui": { "page": "options.html" } }