Dogs to spiders

Replaces the text 'Dog' with 'Spider', based on Snake People by Eric Bailey

Что такое Dogs to spiders?

Dogs to spiders - это расширение Chrome, разработанное saw, и его основная функция - "Replaces the text 'Dog' with 'Spider', based on Snake People by Eric Bailey".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Dogs to spiders

Скачайте файлы расширений Dogs to spiders в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This will replace all references to dogs with spiders. For amusement.                    

Основная информация о расширении

Название Dogs to spiders Dogs to spiders
ID jpgleglgimgdfjndpllcfcgacieggogm
Официальный URL https://chromewebstore.google.com/detail/dogs-to-spiders/jpgleglgimgdfjndpllcfcgacieggogm
Описание Replaces the text 'Dog' with 'Spider', based on Snake People by Eric Bailey
Размер файла 16.75 KB
Количество установок 22
Текущая Версия 1.0.7
Последнее Обновление 2016-06-07
Дата публикации 2016-06-06
Рейтинг 4.20/5 Всего 5 оценок
Разработчик saw
Тип оплаты free
Официальный сайт расширения https://github.com/saw/dogs-to-spiders
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dogs to spiders",
    "short_name": "Spiders",
    "description": "Replaces the text 'Dog' with 'Spider', based on Snake People by Eric Bailey",
    "author": "Stephen Woods",
    "version": "1.0.7",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}