HOTDOG?

This will tell you if the image displays a hot dog

Что такое HOTDOG??

HOTDOG? - это расширение Chrome, разработанное WetJerry, и его основная функция - "This will tell you if the image displays a hot dog".

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

screenshot
screenshot

Скачать файл CRX расширения HOTDOG?

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

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

                        Hot dog identifier

https://github.com/j3rryj/HotDog-Chrome-Extension                    

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

Название HOTDOG? HOTDOG?
ID pkiddchnkhbmloliaoijcdafnfmejjea
Официальный URL https://chromewebstore.google.com/detail/hotdog/pkiddchnkhbmloliaoijcdafnfmejjea
Описание This will tell you if the image displays a hot dog
Размер файла 154 KB
Количество установок 25
Текущая Версия 1.0
Последнее Обновление 2017-06-23
Дата публикации 2017-06-23
Рейтинг 5.00/5 Всего 3 оценок
Разработчик WetJerry
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HOTDOG?",
    "description": "This will tell you if the image displays a hot dog",
    "version": "1.0",
    "icons": {
        "16": "icon1.png",
        "48": "icon1.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "inject.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon1.png",
        "default_title": "HotDog"
    },
    "permissions": [
        "desktopCapture",
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "https:\/\/ajax.googleapis.com\/"
    ]
}