Kwai Pixel Helper

Kwai Pixel Helper

Kwai Pixel Assistant The Pixel Helper is a plug-in that monitors whether your Kwai Pixel is functioning properly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "default_locale": "en",
  "version": "1.3.6",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "alarms",
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/Kwai-1.png",
      "32": "images/Kwai-2.png",
      "48": "images/Kwai-3.png",
      "128": "images/Kwai-4.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/Kwai-active-1.png",
    "32": "images/Kwai-active-2.png",
    "48": "images/Kwai-active-3.png",
    "128": "images/Kwai-active-4.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js",
        "iframe.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "netRequest",
        "enabled": true,
        "path": "netRequest.json"
      }
    ]
  }
}