autobookmarker/manifest.json

33 lines
589 B
JSON
Raw Permalink Normal View History

2021-02-23 03:02:19 +00:00
{
"manifest_version": 2,
"name": "Autobookmarker",
2021-02-23 06:38:57 +00:00
"version": "1.0.1",
2021-02-23 03:02:19 +00:00
"description": "Automatically bookmarks open tabs",
2021-02-23 03:22:12 +00:00
"homepage_url": "https://ahti.space/git/nortti/autobookmarker",
2021-02-23 03:02:19 +00:00
"icons": {
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"permissions": [
"tabs",
"bookmarks",
"storage"
],
"browser_action": {
"default_icon": {
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"default_title": "Bookmark open tabs"
},
"background": {
"scripts": ["background.js"]
}
}