KAVworks Close Kiosk Plugin

This extension closes the chrome in kiosk mode

KAVworks Close Kiosk Pluginคืออะไร?

KAVworks Close Kiosk Plugin เป็นส่วนขยายของ Chrome ที่พัฒนาโดย support และคุณลักษณะหลักของมันคือ "This extension closes the chrome in kiosk mode"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย KAVworks Close Kiosk Plugin

ดาวน์โหลดไฟล์ส่วนขยาย KAVworks Close Kiosk Plugin ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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",
        ""
    ]
}