manifest.webapp (1030B)
1 { 2 "version": "0.0.6", 3 "name": "Kopher", 4 "description": "A Gopher client for KaiOS", 5 "launch_path": "/index.html", 6 "icons": { 7 "112": "/img/icon112.png", 8 "56": "/img/icon56.png" 9 }, 10 "developer": { 11 "name": "Luxferre", 12 "url": "https://luxferre.top" 13 }, 14 "type": "privileged", 15 "origin": "app://kopher.luxferre.top", 16 "chrome": {"statusbar": "overlap"}, 17 "permissions": { 18 "tcp-socket": { 19 "description": "To fetch Gopher resources" 20 }, 21 "device-storage:pictures": {"access": "readwrite"}, 22 "device-storage:sdcard": {"access": "readwrite"}, 23 "desktop-notification": { 24 "description": "To notify about downloaded files" 25 } 26 }, 27 "activities": { 28 "view": { 29 "href": "/index.html", 30 "disposition": "window", 31 "filters": { 32 "type": "url", 33 "url": { 34 "required": true, 35 "pattern":"gopher:.{1,16384}" 36 } 37 }, 38 "returnValue": false 39 } 40 }, 41 "installs_allowed_from": [ 42 "*" 43 ], 44 "default_locale": "en" 45 } 46