The minimalist Pomodoro timer that keeps you on track, no fluff, just results.
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": 2,
"name": "Pomodur - Focus Timer",
"version": "1.0.0",
"permissions": [
"storage",
"notifications",
"alarms"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"background": {
"scripts": [
"browserPolyfill.js",
"sounds.js",
"background.js"
]
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"web_accessible_resources": [
"audio/pomodoro-complete.mp3",
"audio/break-complete.mp3",
"audio/long-break-complete.mp3"
],
"browser_specific_settings": {
"gecko": {
"id": "{ae5fcba7-1796-44ad-8c50-5b2f1972fc5a}",
"strict_min_version": "78.0"
}
}
}