Zbot+ Panel

Zbot+ Panel

An Animation Throwdown tool to help you win

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zbot+ Panel",
  "manifest_version": 2,
  "description": "An Animation Throwdown tool to help you win",
  "version": "0.85",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "page_action": {
    "default_icon": "icon16.png",
    "default_title": "Zbot+ Panel"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.synapse-games.com/*",
        "*://*.kongregate.com/*"
      ],
      "all_frames": true,
      "js": [
        "script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "cookies",
    "*://*.kongregate.com/*",
    "activeTab"
  ]
}