Productivity Pet

Productivity Pet

Take care of a digital pet by getting work done.

Merlin
Additional files are visible only to premium users

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"
  ]
}