PokeDemon - Pokemon Replacer
Removes the word Pokemon from all web pages and replaces it with a random word
Что такое PokeDemon - Pokemon Replacer?
PokeDemon - Pokemon Replacer - это расширение Chrome, разработанное https://diginomadic.com/apps, и его основная функция - "Removes the word Pokemon from all web pages and replaces it with a random word".
Снимки экрана расширения
Скачать файл CRX расширения PokeDemon - Pokemon Replacer
Скачайте файлы расширений PokeDemon - Pokemon Replacer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        PokeDemon replaces all instances of the word Pokemon in your browser to a random other game. If you're tired of hearing the world go crazy about Pokemon then this is the extension for you.                     Основная информация о расширении
| Название |  | 
| ID | ckmckfpgpinaipfjomhahlahnindcnpp | 
| Официальный URL | https://chromewebstore.google.com/detail/pokedemon-pokemon-replace/ckmckfpgpinaipfjomhahlahnindcnpp | 
| Описание | Removes the word Pokemon from all web pages and replaces it with a random word | 
| Размер файла | 38.52 KB | 
| Количество установок | 36 | 
| Текущая Версия | 1.0.1 | 
| Последнее Обновление | 2016-07-23 | 
| Дата публикации | 2016-07-23 | 
| Рейтинг | 2.50/5 Всего 4 оценок | 
| Разработчик | https://diginomadic.com/apps | 
| Тип оплаты | free | 
| Поддерживаемые языки | en | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PokeDemon - Pokemon Replacer",
    "description": "Removes the word Pokemon from all web pages and replaces it with a random word",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "1.0.1",
    "short_name": "PokeDemon",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
} | |