Thinlabs Kiosk

Thinlabs Chrome Kiosk extension

Thinlabs Kiosk란 무엇입니까?

Thinlabs Kiosk은(는) https://store.thinlabs.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Thinlabs Chrome Kiosk extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Thinlabs Kiosk 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}