Cookie Notification Preventer (CNP)

Cookie Notification Preventer (CNP)

Simple extension for preventing web site's cookies notifications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "1.0.0",
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "images/16x16/icon.png",
    "48": "images/48x48/icon.png",
    "128": "images/128x128/icon.png"
  },
  "browser_action": {
    "default_icon": "images/16x16/icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage",
    "notifications",
    "contextMenus",
    "tabs",
    "*://*/*"
  ]
}