readlater://save?url=https://example.org&tags
A protocol handler that will save any articles it receives to getpocket.
This supports handling readlater://save?url=<url>&title=<title>&tags=<tags>
without installing web extension. If you install the
webextension, it
provides additional features such as:
Alternatively, you can use bookmarket to add items to the getpocket. Or just paste properly formatted link to url bar.
cargo install --git https://github.com/dineshdb/readlater
readlater register
POCKET_CONSUMER_KEY
, POCKET_ACCESS_TOKEN
via
env variable.Visit the hosted version of this page
and then click
this link to add
the this repo url to pocket using readlater://
.
javascript: (function () {
var currentUrl = encodeURIComponent(window.location.href);
var tags = prompt("Enter tags (comma-separated):", "");
if (tags !== null) {
var encodedTags = encodeURIComponent(tags);
var url = `readlater://save?url=${currentUrl}&tags=${encodedTags}`;
window.location.href = url;
}
})();
readlater://save?url=<url>&title=<title>&tags=<tags>
readlater://
button that saves current tab pocketCtrl+Shift+L
)readlater://
links in web pages for easier saving to
readlater://
readlater.conf
MIT