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, "short_name": "My Pomodoro", "name": "My Pomodoro: work, relax, focus", "version": "1.0", "description": "A Pomodoro countdown timer that helps you focus by blocking access to distracting websites.", "homepage_url": "https:\/\/github.com\/nfreear\/pomodoro-browser-ext#readme", "author": { "email": "[email protected]" }, "icons": { "128": "assets\/icon-128.png" }, "permissions": [ "activeTab", "notifications", "scripting", "storage", "webNavigation", "offscreen" ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "background": { "type": "module", "service_worker": "lib\/service-worker.js" }, "action": { "default_popup": "pages\/index.html", "default_title": "My Pomodoro" }, "options_ui": { "open_in_tab": true, "page": "options\/options.html" }, "web_accessible_resources": [ { "matches": [ "https:\/\/*\/*" ], "resources": [ "assets\/app-icons.svg", "assets\/content-style.css", "lib\/emoji-svg.js", "lib\/Icons.js" ] } ] }