Thinlabs Kiosk

Thinlabs Chrome Kiosk extension

Thinlabs Kioskคืออะไร?

Thinlabs Kiosk เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://store.thinlabs.com และคุณลักษณะหลักของมันคือ "Thinlabs Chrome Kiosk extension"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

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

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

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

                        Thinlabs Kiosk extension for Chrome browsers allows a single URL or multiple URLs that are specified in the extension settings to open in a fullscreen kiosk mode. Multiple tabs are displayed on a tab bar if more than one url is specified in the extension options. The extension options page can be password protected. The same password is used to prevent the users from closing the kiosk mode browser. To start chrome in iosk mode create a shortcut with the --kiosk switch ( "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --kiosk ) and place it  in the startup folder.

For additional information, technical support, and feature requests please contact us: https://www.thinlabs.com/content/contact-us                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Thinlabs Kiosk Thinlabs Kiosk
ID bjjjdfkmchhojjkgbnhhlpoaeehpjjhi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/thinlabs-kiosk/bjjjdfkmchhojjkgbnhhlpoaeehpjjhi
คำอธิบาย Thinlabs Chrome Kiosk extension
ขนาดไฟล์ 193 KB
จำนวนการติดตั้ง 3,189
เวอร์ชันปัจจุบัน 1.0.30
อัปเดตครั้งล่าสุด 2022-08-30
วันที่เผยแพร่ 2020-05-30
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://store.thinlabs.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.thinlabs.com/
URL หน้าช่วยเหลือ https://www.thinlabs.com/content/contact-us
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Thinlabs Kiosk",
    "short_name": "TL Kiosk",
    "description": "Thinlabs Chrome Kiosk extension",
    "version": "1.0.30",
    "author": "Thinlabs",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/jquery-3.5.0.min.js",
            "js\/background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "persistent": true,
            "js": [
                "js\/jquery-3.5.0.min.js",
                "js\/jquery-ui.min.js",
                "js\/contents.js"
            ],
            "css": [
                "css\/contents.css"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/internet.png",
        "images\/back.png",
        "images\/forward.png",
        "images\/reload.png",
        "images\/home.png",
        "images\/sound.png",
        "images\/no_sound.png",
        "images\/loading.gif",
        "css\/contents.css"
    ],
    "permissions": [
        "background",
        "storage",
        "nativeMessaging"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "minimum_chrome_version": "40",
    "manifest_version": 2
}