HOTDOG?

This will tell you if the image displays a hot dog

HOTDOG? क्या है?

HOTDOG? WetJerry द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This will tell you if the image displays a hot dog"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में HOTDOG? एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/"
    ]
}