added manifests
- should be installable on Chromium for now
This commit is contained in:
parent
d1156dcf3b
commit
02ce8b3e51
3 changed files with 19 additions and 0 deletions
0
app/app.json
Normal file
0
app/app.json
Normal file
8
chrome.js
Normal file
8
chrome.js
Normal 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
11
manifest.json
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"name": "RollDice",
|
||||||
|
"description": "Chinese dice game",
|
||||||
|
"version": "0.1",
|
||||||
|
"manifest_version": 3,
|
||||||
|
"app": {
|
||||||
|
"background": {
|
||||||
|
"scripts": ["chrome.js"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue