KAVworks Close Kiosk Plugin

This extension closes the chrome in kiosk mode

What is KAVworks Close Kiosk Plugin?

KAVworks Close Kiosk Plugin is a Chrome extension developed by support, and its main feature is "This extension closes the chrome in kiosk mode".

Download KAVworks Close Kiosk Plugin Extension CRX File

Download KAVworks Close Kiosk Plugin extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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" }, "*");                    

Extension Basic Information

Name KAVworks Close Kiosk Plugin KAVworks Close Kiosk Plugin
ID jjefaiminmmcjommohpnmpiompbcekaa
Official URL https://chrome.google.com/webstore/detail/kavworks-close-kiosk-plug/jjefaiminmmcjommohpnmpiompbcekaa
Description This extension closes the chrome in kiosk mode
File Size 5.28 KB
Installation Count 131
Current Version 1.0
Last Updated 2016-10-18
Publish Date 2016-10-18
Rating 5.00/5 Total 1 Ratings
Developer support
Payment Type free
Supported Languages 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",
        ""
    ]
}