Toggleable Chrome Unicorns

This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.

Что такое Toggleable Chrome Unicorns?

Toggleable Chrome Unicorns - это расширение Chrome, разработанное dennistheflash, и его основная функция - "This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.".

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

screenshot

Скачать файл CRX расширения Toggleable Chrome Unicorns

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

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

                        This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.                    

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

Название Toggleable Chrome Unicorns Toggleable Chrome Unicorns
ID fegnjfjcokdemicjjhiihkggbniknnbg
Официальный URL https://chrome.google.com/webstore/detail/fegnjfjcokdemicjjhiihkggbniknnbg
Описание This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.
Размер файла 672 KB
Количество установок 137
Текущая Версия 1.0
Последнее Обновление 2017-12-17
Дата публикации 2017-12-17
Рейтинг 4.00/5 Всего 1 оценок
Разработчик dennistheflash
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Toggleable Chrome Unicorns",
    "version": "1.0",
    "web_accessible_resources": [
        "unicorns\/*.jpg"
    ],
    "background": {
        "scripts": [
            "unicorn.js"
        ]
    },
    "icons": {
        "16": "ic16.png",
        "48": "ic48.png",
        "128": "ic128.png"
    },
    "browser_action": {
        "default_icon": "ic128.png",
        "default_popup": "popup.html",
        "default_title": "Chrome Unicorns"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "unicorn.js"
            ]
        }
    ]
}