Raspberry Pi Kiosk Helper
This extension shows a custom error page. Waits a few min then tries to reload the original page.
O que é Raspberry Pi Kiosk Helper?
Raspberry Pi Kiosk Helper é uma extensão do Chrome desenvolvida por Caleb Pinckney, e sua principal característica é "This extension shows a custom error page. Waits a few min then tries to reload the original page.".
Baixar o arquivo CRX da Extensão Raspberry Pi Kiosk Helper
Baixe arquivos de extensão Raspberry Pi Kiosk Helper 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
Informações Básicas da Extensão
Nome | |
ID | blpmoajoglnieclemcoaejlbbngggnja |
URL Oficial | https://chrome.google.com/webstore/detail/raspberry-pi-kiosk-helper/blpmoajoglnieclemcoaejlbbngggnja |
Descrição | This extension shows a custom error page. Waits a few min then tries to reload the original page. |
Tamanho do Arquivo | 7.39 KB |
Contagem de Instalações | 11 |
Versão Atual | 1.0.7 |
Última Atualização | 2015-04-01 |
Data de Publicação | 2015-04-01 |
Desenvolvedor | Caleb Pinckney |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Raspberry Pi Kiosk Helper", "description": "This extension shows a custom error page. Waits a few min then tries to reload the original page.", "version": "1.0.7", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "kiosk_enabled": true, "incognito": "split", "browser_action": { "default_icon": "icon.png", "default_popup": "background.html", "default_title": "Click here!" }, "background": { "scripts": [ "app.js" ], "persistent": true }, "permissions": [ "activeTab", "tabs", "storage", "alarms", "webRequest", "*:\/\/*.elauwit.net\/", "*:\/\/*.myelauwit.net\/" ] } |