Added manifest to make it work like a chrome extension.

This commit is contained in:
deepjyoti30
2020-05-12 22:19:12 +05:30
parent 34b69f727d
commit 5e33c26759
5 changed files with 29 additions and 12 deletions

18
manifest.json Normal file
View File

@@ -0,0 +1,18 @@
{
"manifest_version": 2,
"name": "minimal-startpage",
"short_name": "minimal-startpage",
"version": "1.0",
"description": "Overrides the browsers newtab page with a custom startpage.",
"author": "deepjyoti30",
"icons": {
"48": "img/icon48.png",
"96": "img/icon96.png",
"128": "img/icon128.png",
"192": "img/icon192.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
}
}