Peeshkot

Peeshkot

Get rid of annoying EU cookie law notices and automatically opt-in where needed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Peeshkot",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "Get rid of annoying EU cookie law notices and automatically opt-in where needed.",
  "homepage_url": "https://github.com/Swizec/Peeshkot",
  "icons": {
    "16": "icons/peeshkot16.png",
    "48": "icons/peeshkot48.png",
    "128": "icons/peeshkot128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/zepto.min.js",
      "src/bg/background.js"
    ],
    "persistent": false
  },
  "options_page": "src/options_custom/index.html",
  "page_action": {
    "default_icon": "icons/peeshkot19.png"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/zepto.min.js",
        "src/inject/inject.js"
      ]
    }
  ]
}