Pan(w)achrome

Pan(w)achrome

PANW extension for Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pan(w)achrome",
  "version": "0.7.1.9",
  "manifest_version": 2,
  "description": "PANW extension for Chrome",
  "background": {
    "page": "background.html"
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "19": "images/icon_paper_19.png",
      "38": "images/icon_paper_38.png"
    },
    "default_title": "Pan(w)achrome"
  },
  "icons": {
    "16": "images/icon_paper_16.png",
    "128": "images/icon_paper_128.png"
  },
  "permissions": [
    "https://*/*",
    "unlimitedStorage",
    "notifications",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "images/icon_paper_128.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/php/login.php",
        "https://*/php/login.php?"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ]
}