KAVworks Close Kiosk Plugin

This extension closes the chrome in kiosk mode

O que é KAVworks Close Kiosk Plugin?

KAVworks Close Kiosk Plugin é uma extensão do Chrome desenvolvida por support, e sua principal característica é "This extension closes the chrome in kiosk mode".

Baixar o arquivo CRX da Extensão KAVworks Close Kiosk Plugin

Baixe arquivos de extensão KAVworks Close Kiosk Plugin no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome KAVworks Close Kiosk Plugin KAVworks Close Kiosk Plugin
ID jjefaiminmmcjommohpnmpiompbcekaa
URL Oficial https://chrome.google.com/webstore/detail/kavworks-close-kiosk-plug/jjefaiminmmcjommohpnmpiompbcekaa
Descrição This extension closes the chrome in kiosk mode
Tamanho do Arquivo 5.28 KB
Contagem de Instalações 131
Versão Atual 1.0
Última Atualização 2016-10-18
Data de Publicação 2016-10-18
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor support
Tipo de Pagamento free
Idiomas Suportados 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",
        ""
    ]
}