Showdown Helper

Showdown Helper

Adds UI elements to Pokemon Showdown for easier battles

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Showdown Helper",
  "version": "1.2.0",
  "description": "Adds UI elements to Pokemon Showdown for easier battles",
  "manifest_version": 2,
  "permissions": [
    "declarativeContent",
    "notifications",
    "https://www.smogon.com/",
    "https://play.pokemonshowdown.com/"
  ],
  "background": {
    "scripts": [
      "toggle_icon.js",
      "handle_message.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://play.pokemonshowdown.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "page_action": {
    "default_icon": "icon.png"
  }
}