PandaBlur

PandaBlur

PandaBlur

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PandaBlur",
  "description": "PandaBlur",
  "version": "0.2",
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "script.js"
      ],
      "matches": [
        "*://exhentai.org/*",
        "*://exhentai.org/*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "*://exhentai.org/*",
    "*://exhentai.org/*/*"
  ]
}