Pokemon Showdown Random Battle Tooltip

Pokemon Showdown Random Battle Tooltip

This is a tooltip designed specifically for the Random Battle mode of the site Pokemon Showdown. The tooltip provides useful data…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pokemon Showdown Random Battle Tooltip",
  "version": "2.2",
  "content_scripts": [
    {
      "matches": [
        "https://pokemonshowdown.com/*",
        "http://pokemonshowdown.com/*",
        "https://play.pokemonshowdown.com/*",
        "http://play.pokemonshowdown.com/*"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "my_file.js"
  ],
  "browser_action": {
    "default_icon": "pokeball.png"
  }
}