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
7575279136254c6933119361042ee5a5ee69d2e3
parent
c89f2244b03fbd784560e933ff6d66fa868ea1ec
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2025-04-24 07:26
mv code to src dir

Diffstat

M Makefile 2 +-
M manifest.chromium.json 4 ++--
M manifest.json 4 ++--
R bg.js -> src/bg.js 0
R shared.js -> src/shared.js 0
R stack.css -> src/stack.css 0
R stack.html -> src/stack.html 0
R stack.js -> src/stack.js 0

8 files changed, 5 insertions, 5 deletions


diff --git a/Makefile b/Makefile

@@ -1,4 +1,4 @@
    1    -1 bookmark-stack.zip: bg.js icons/icon-16.png icons/icon-48.png icons/icon-128.png manifest.json shared.js stack.js stack.html
   -1     1 bookmark-stack.zip: manifest.json src icons/icon-16.png icons/icon-48.png icons/icon-128.png
    2     2 	zip -r -FS $@ $^
    3     3 
    4     4 icons/icon-16.png: icons/icon.svg

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

@@ -7,7 +7,7 @@
    7     7   "version": "2.0.0",
    8     8   "action": {
    9     9     "default_title": "Bookmark Stack",
   10    -1     "default_popup": "stack.html"
   -1    10     "default_popup": "src/stack.html"
   11    11   },
   12    12   "icons": {
   13    13     "16": "icons/icon-16.png",
@@ -15,7 +15,7 @@
   15    15     "128": "icons/icon-128.png"
   16    16   },
   17    17   "background": {
   18    -1     "service_worker": "bg.js",
   -1    18     "service_worker": "src/bg.js",
   19    19     "type": "module"
   20    20   },
   21    21   "permissions": [

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

@@ -7,7 +7,7 @@
    7     7   "version": "2.0.0",
    8     8   "action": {
    9     9     "default_title": "Bookmark Stack",
   10    -1     "default_popup": "stack.html"
   -1    10     "default_popup": "src/stack.html"
   11    11   },
   12    12   "icons": {
   13    13     "16": "icons/icon-16.png",
@@ -15,7 +15,7 @@
   15    15     "128": "icons/icon-128.png"
   16    16   },
   17    17   "background": {
   18    -1     "scripts": ["bg.js"],
   -1    18     "scripts": ["src/bg.js"],
   19    19     "type": "module"
   20    20   },
   21    21   "permissions": [

diff --git a/bg.js b/src/bg.js

diff --git a/shared.js b/src/shared.js

diff --git a/stack.css b/src/stack.css

diff --git a/stack.html b/src/stack.html

diff --git a/stack.js b/src/stack.js