bookmark-stack

web extension to save pages in a stack for reading them later  https://addons.mozilla.org/firefox/addon/bookmark-stack/
git clone https://git.ce9e.org/bookmark-stack.git

commit
2b39559e09864231d7ae3d91d7d8b83758f8d81b
parent
3cc557674807a95d644d8858b2813ac36964e4bd
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2025-04-24 07:06
chrome: provide separate manifest.json

Diffstat

A manifest.chromium.json 27 +++++++++++++++++++++++++++

1 files changed, 27 insertions, 0 deletions


diff --git a/manifest.chromium.json b/manifest.chromium.json

@@ -0,0 +1,27 @@
   -1     1 {
   -1     2   "manifest_version": 3,
   -1     3   "name": "Bookmark Stack",
   -1     4   "author": "Tobias Bengfort",
   -1     5   "homepage_url": "https://github.com/xi/bookmark-stack",
   -1     6   "description": "inspired by view later",
   -1     7   "version": "2.0.0",
   -1     8   "action": {
   -1     9     "default_title": "Bookmark Stack",
   -1    10     "default_popup": "stack.html"
   -1    11   },
   -1    12   "icons": {
   -1    13     "16": "icons/icon-16.png",
   -1    14     "48": "icons/icon-48.png",
   -1    15     "128": "icons/icon-128.png"
   -1    16   },
   -1    17   "background": {
   -1    18     "service_worker": "bg.js",
   -1    19     "type": "module"
   -1    20   },
   -1    21   "permissions": [
   -1    22     "bookmarks",
   -1    23     "tabs",
   -1    24     "contextMenus",
   -1    25     "favicon"
   -1    26   ]
   -1    27 }