This commit is contained in:
2025-02-26 14:49:25 +07:00
commit 1c1d9c4474
6403 changed files with 1953774 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
/* global chrome */
// local chrome app setting
// Goes in pair with a simple manifest.json including name, description,
// version, icons and this:
//
// "app": {
// "background": {
// "scripts": ["/resources/scripts/chrome-background.js"]
// }
// },
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('../viewers/mobile/index.html', {
'bounds': {
'width': 1100,
'height': 800
}
});
});