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": "Pomodoro", "description": "A pomodoro extension with a timer that switches between 15 minutes of work, and 5 minutes of break.", "version": "0.5", "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" }, "icons": { "32": "32.png" }, "permissions": [ "scripting", "notifications", "webRequest", "tabs", "activeTab" ], "host_permissions": [ "<all_urls>" ], "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content-script.js" ] } ] }