KAVworks Close Kiosk Plugin

This extension closes the chrome in kiosk mode

KAVworks Close Kiosk Plugin là gì?

KAVworks Close Kiosk Plugin là một tiện ích mở rộng Chrome được phát triển bởi support, và tính năng chính của nó là "This extension closes the chrome in kiosk mode".

Tải xuống tệp CRX của tiện ích mở rộng KAVworks Close Kiosk Plugin

Tải xuống các tệp mở rộng KAVworks Close Kiosk Plugin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên KAVworks Close Kiosk Plugin KAVworks Close Kiosk Plugin
ID jjefaiminmmcjommohpnmpiompbcekaa
URL Chính Thức https://chrome.google.com/webstore/detail/kavworks-close-kiosk-plug/jjefaiminmmcjommohpnmpiompbcekaa
Mô tả This extension closes the chrome in kiosk mode
Kích Thước Tệp 5.28 KB
Số Lần Cài Đặt 131
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-10-18
Ngày Phát Hành 2016-10-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển support
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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",
        ""
    ]
}