Speed Kit Web Extension

Speed Kit Web Extension

Manage and analyze Speed Kit directly from your browser! TURN SPEED KIT ON/OFF Turning Speed Kit on and off only affects the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Speed Kit Web Extension",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "activeTab",
    "cookies"
  ],
  "action": {
    "default_popup": "index.html",
    "default_title": "Speed Kit Web Extension"
  },
  "background": {
    "service_worker": "background/background.global.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "contentscript/index.global.js"
      ],
      "css": [
        "contentscript/customstyles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentscript/inject.global.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "optional_permissions": [],
  "optional_host_permissions": [
    "https://dashboard.speed-kit.com/*"
  ],
  "version": "0.24.0"
}