Take care of a digital pet by getting work done.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Productivity Pet",
"description": "Take care of a digital pet by getting work done.",
"version": "1.0",
"background": {
"scripts": [
"app/eventPage.js"
]
},
"browser_action": {
"default_icon": "img/icon.png",
"default_popup": "index.html",
"default_title": "Check in on your pet!"
},
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"options_ui": {
"page": "app/options.html"
},
"permissions": [
"tabs",
"activeTab",
"https://ajax.googleapis.com/",
"storage",
"alarms"
]
}