Inspect and view changes in Pomodoro 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": 2,
"name": "Pomodoro",
"version": "1.0.1",
"description": "Great timer app to work in pomodoro style",
"author": "Ginpei Takanashi",
"icons": {
"90": "icons/icon-90.png"
},
"permissions": [
"notifications",
"storage"
],
"browser_action": {
"default_icon": "icons/icon-90.png",
"default_title": "Pomodoro",
"default_popup": "popup/index.html"
},
"background": {
"page": "background/index.html",
"persistent": true
},
"options_page": "options_ui/settings.html",
"options_ui": {
"page": "options_ui/settings.html",
"chrome_style": true
}
}