added manifests

- should be installable on Chromium for now
This commit is contained in:
Saw, Hansly Kendrich 2022-09-14 12:34:00 +08:00
parent d1156dcf3b
commit 02ce8b3e51
3 changed files with 19 additions and 0 deletions

0
app/app.json Normal file
View File

8
chrome.js Normal file
View File

@ -0,0 +1,8 @@
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
'outerBounds': {
'width': 500,
'height': 500
}
});
});

11
manifest.json Normal file
View File

@ -0,0 +1,11 @@
{
"name": "RollDice",
"description": "Chinese dice game",
"version": "0.1",
"manifest_version": 3,
"app": {
"background": {
"scripts": ["chrome.js"]
}
}
}