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
4eae9dcd6b4d775f0c066315bdee65c3397d0d5f
parent
3f2f7e56331ab13c408302d56bbf589f87f215da
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2023-07-15 16:48
use linkText when using "read link later"

Diffstat

M bg.js 1 +

1 files changed, 1 insertions, 0 deletions


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

@@ -14,6 +14,7 @@ chrome.contextMenus.onClicked.addListener(function(info, tab) {
   14    14 	if (info.menuItemId === 'read-later-link') {
   15    15 		pushBookmark({
   16    16 			url: info.linkUrl,
   -1    17 			title: info.linkText,
   17    18 		});
   18    19 	} else {
   19    20 		pushBookmark(tab, function() {