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
26737f0b38aa01d20cc4c043e1e0cfe187f0312a
parent
7424e10ecabebfa45c48eaf5d47ea47eeee41930
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-10-15 09:34
rm "use strict"

had a typo anyway

Diffstat

M bg.js 2 --
M shared.js 2 --
M stack.js 2 --

3 files changed, 0 insertions, 6 deletions


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

@@ -1,5 +1,3 @@
    1    -1 'use struct';
    2    -1 
    3     1 chrome.contextMenus.create({
    4     2 	title: 'read later',
    5     3 	contexts: ['page', 'selection', 'editable', 'image', 'tab'],

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

@@ -1,5 +1,3 @@
    1    -1 'use struct';
    2    -1 
    3     1 const FOLDER_TITLE = 'stack';
    4     2 
    5     3 var getRootFolder = function(callback) {

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

@@ -1,5 +1,3 @@
    1    -1 'use struct';
    2    -1 
    3     1 var render = function(element, items) {
    4     2 	if (items.length === 0) {
    5     3 		element.outerHTML = '<p>No links stored yet.</p>'