HOTDOG?

This will tell you if the image displays a hot dog

Co to jest HOTDOG??

HOTDOG? to rozszerzenie Chrome opracowane przez WetJerry, a jego główną funkcją jest „This will tell you if the image displays a hot dog”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia HOTDOG?

Pobierz pliki rozszerzeń HOTDOG? w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Hot dog identifier

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

Podstawowe informacje o rozszerzeniu

Nazwa HOTDOG? HOTDOG?
ID pkiddchnkhbmloliaoijcdafnfmejjea
Oficjalny URL https://chromewebstore.google.com/detail/hotdog/pkiddchnkhbmloliaoijcdafnfmejjea
Opis This will tell you if the image displays a hot dog
Rozmiar pliku 154 KB
Liczba instalacji 25
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2017-06-23
Data Publikacji 2017-06-23
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper WetJerry
Typ Płatności free
Obsługiwane Języki 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\/"
    ]
}