Everything to Pokémon

Replaces every word with a Pokémon

What is Everything to Pokémon?

Everything to Pokémon is a Chrome extension developed by lukey_q, and its main feature is "Replaces every word with a Pokémon".

Extension Screenshots

screenshot

Download Everything to Pokémon Extension CRX File

Download Everything to Pokémon extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Changes every word to the name of a Pokémon.                    

Extension Basic Information

Name Everything to Pokémon Everything to Pokémon
ID badgmddlemdcnjffifhmamanjibggghe
Official URL https://chromewebstore.google.com/detail/everything-to-pok%C3%A9mon/badgmddlemdcnjffifhmamanjibggghe
Description Replaces every word with a Pokémon
File Size 67.91 KB
Installation Count 138
Current Version 0.1
Last Updated 2014-12-18
Publish Date 2014-12-17
Rating 3.85/5 Total 13 Ratings
Developer lukey_q
Payment Type free
Extension Website https://github.com/lilkraftwerk/everything-to-pokemon
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Everything to Pok\u00e9mon",
    "version": "0.1",
    "description": "Replaces every word with a Pok\u00e9mon",
    "browser_action": {
        "default_icon": {
            "19": "img\/bulbasmall.png",
            "38": "img\/bulbabig.png"
        },
        "default_title": "Everything To Pok\u00e9mon"
    },
    "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"
        }
    ]
}