Pink-out

Pink-out

Removing pink from the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Removing pink from the web",
  "version": "0.0.1",
  "name": "Pink-out",
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "permissions": [
    "webNavigation",
    "*://*/*"
  ],
  "icons": {
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "pink_square.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}