ZPass

ZPass

ZPass

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ZPass",
  "description": "ZPass",
  "version": "1.5.22",
  "minimum_chrome_version": "88",
  "manifest_version": 3,
  "icons": {
    "128": "images/logo32.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/logo32.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/all.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "nativeMessaging",
    "privacy",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "images/*",
        "css/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ]
}