PokePortrait

PokePortrait

Show the corresponding pokemon portrait when hovering a pokemon name

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PokePortrait",
  "short_name": "PokePortrait",
  "description": "Show the corresponding pokemon portrait when hovering a pokemon name",
  "version": "1.2.1",
  "permissions": [
    "activeTab",
    "<all_urls>",
    "storage"
  ],
  "browser_action": {
    "default_icon": "pokeportrait.png"
  },
  "web_accessible_resources": [
    "pokemon/dream-world/*.svg",
    "pokemon/dream-world/*.png"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "myCss.css"
      ],
      "js": [
        "jquery-ui-1.11.4.custom/external/jquery/jquery.js",
        "jquery-ui-1.11.4.custom/jquery-ui.js",
        "dialog.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2
}