HOTDOG?

This will tell you if the image displays a hot dog

Vad är HOTDOG??

HOTDOG? är en Chrome-tillägg utvecklad av WetJerry, och dess huvudfunktion är "This will tell you if the image displays a hot dog".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner HOTDOG?-förlängningens CRX-fil

Ladda ner HOTDOG?-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Hot dog identifier

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

Grundläggande Information om Tillägg

Namn HOTDOG? HOTDOG?
ID pkiddchnkhbmloliaoijcdafnfmejjea
Officiell webbadress https://chromewebstore.google.com/detail/hotdog/pkiddchnkhbmloliaoijcdafnfmejjea
Beskrivning This will tell you if the image displays a hot dog
Filstorlek 154 KB
Antal Installationer 25
Aktuell Version 1.0
Senast Uppdaterad 2017-06-23
Publiceringsdatum 2017-06-23
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare WetJerry
Betalningssätt free
Stödda Språk 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\/"
    ]
}