Everything to Pokémon

Everything to Pokémon

Replaces every word with a Pokémon

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Everything to Pokémon",
  "version": "0.1",
  "description": "Replaces every word with a Pokémon",
  "browser_action": {
    "default_icon": {
      "19": "img/bulbasmall.png",
      "38": "img/bulbabig.png"
    },
    "default_title": "Everything To Pokémon"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "events.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}