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
1135dbb6089e952435f1e0940b6f691638b38bc3
parent
1d37de722d976209ae63e681473701ed5c5262d6
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2025-04-23 18:45
add Makefile

Diffstat

A Makefile 11 +++++++++++

1 files changed, 11 insertions, 0 deletions


diff --git a/Makefile b/Makefile

@@ -0,0 +1,11 @@
   -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     2 	zip -r -FS $@ $^
   -1     3 
   -1     4 icons/icon-16.png: icons/icon.svg
   -1     5 	convert -resize 16x -background transparent $< $@
   -1     6 
   -1     7 icons/icon-48.png: icons/icon.svg
   -1     8 	convert -resize 48x -background transparent $< $@
   -1     9 
   -1    10 icons/icon-128.png: icons/icon.svg
   -1    11 	convert -resize 128x -background transparent $< $@