Kiosk for Compass
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Compass Kiosk",
"description": "Kiosk for Compass",
"manifest_version": 2,
"version": "8.1.0",
"kiosk_enabled": true,
"offline_enabled": true,
"icons": {
"16": "img/icon_16.png",
"128": "img/icon_128.png"
},
"app": {
"background": {
"scripts": [
"www/js/jquery.min.js",
"js/lib/wsc-chrome.js",
"js/admin.js",
"js/main.js",
"js/setup.js"
],
"persistent": false
}
},
"sockets": {
"tcpServer": {
"listen": "*"
}
},
"permissions": [
"<all_urls>",
"system.display",
"system.network",
"power",
"webview",
"alwaysOnTopWindows",
"storage",
"app.window.fullscreen",
"app.window.fullscreen.overrideEsc",
{
"fileSystem": [
"directory",
"retainEntries"
]
}
],
"optional_permissions": [
"audioCapture",
"videoCapture"
]
}