linkylinky-chrome/src/manifest.json

17 lines
352 B
JSON
Raw Permalink Normal View History

2021-08-14 11:51:34 +00:00
{
"manifest_version": 2,
"name": "LinkyLinky",
"version": "0.0.1",
"description": "A simple url shortener",
"short_name": "LinkyLinky",
"permissions": [
2021-08-14 13:32:03 +00:00
"tabs",
2021-08-14 13:21:03 +00:00
"notifications"
2021-08-14 11:51:34 +00:00
],
"browser_action": {
"default_popup": "index.html"
2021-08-14 13:34:49 +00:00
},
"icons": {
"128": "icon_128.png"
}
2021-08-14 11:51:34 +00:00
}