Potato It!

Potato It!

Internet + Potatoes = Pure Awesome

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Potato It!",
  "description": "Internet + Potatoes = Pure Awesome",
  "version": "2.0.2",
  "icons": {
    "19": "res/icon-pxl-light.png",
    "128": "res/icon128.png"
  },
  "browser_action": {
    "default_name": "Potato It!",
    "default_icon": "res/icon-pxl-light.png"
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "res/potato.png",
    "jquery.min.js",
    "options.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "contentScript.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ]
}