Inspect and view changes in Pomodoro Timer source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Pomodoro Timer",
"version": "1.0",
"description": "A Pomodoro timer that blocks distractions and boosts productivity.",
"permissions": [
"activeTab",
"notifications",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"alarms",
"storage",
"tabs"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"commands": {
"open-popup": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "Command+Shift+F"
},
"description": "Open the Pomodoro Timer Extension"
}
},
"web_accessible_resources": [
{
"resources": [
"alarms/digital_watch_alarm_cut.mp3"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}