KAVworks Close Kiosk Plugin

This extension closes the chrome in kiosk mode

KAVworks Close Kiosk Plugin क्या है?

KAVworks Close Kiosk Plugin support द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension closes the chrome in kiosk mode"।

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

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

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

                        This extension is used to close the kiosk mode of chrome from javascript. For example, you want an exit button in your web page, while running in kiosk mode. To exit you will have to call following javascript from your code.

            window.postMessage({ type: "closemykiosk", text: "hello" }, "*");                    

एक्सटेंशन की मूल जानकारी

नाम KAVworks Close Kiosk Plugin KAVworks Close Kiosk Plugin
ID jjefaiminmmcjommohpnmpiompbcekaa
आधिकारिक URL https://chrome.google.com/webstore/detail/kavworks-close-kiosk-plug/jjefaiminmmcjommohpnmpiompbcekaa
विवरण This extension closes the chrome in kiosk mode
फ़ाइल का आकार 5.28 KB
स्थापना संख्या 131
वर्तमान संस्करण 1.0
अंतिम अपडेट 2016-10-18
प्रकाशन तिथि 2016-10-18
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर support
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "KAVworks Close Kiosk Plugin",
    "description": "This extension closes the chrome in kiosk mode",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "custom.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        ""
    ]
}