Skip to content

Commit bba067a

Browse files
committed
Pocket Universal Browser Extension is written.
1 parent 1c88f76 commit bba067a

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
title: "Pocket 'Universal' Browser Extension"
3+
publishedAt: '2025-03-02'
4+
category: 'web'
5+
isFeatured: true
6+
---
7+
8+
For years, I've used on [Pocket](https://getpocket.com/home) to save articles I want to read later. It's an incredibly useful tool for bookmarking content across the web. However, I recently noticed that [the official Pocket extension for Google Chrome is no longer available in the Chrome Web Store](https://github.com/Pocket/extension-save-to-pocket/issues/292). This is likely due to [Google's deprecation of Manifest V2](https://developer.chrome.com/docs/extensions/develop/migrate/mv2-deprecation-timeline?hl=en), which has affected many browser extensions.
9+
10+
Rather than searching for an alternative extension or tool, I found a simple workaround that lets me add articles to Pocket without installing anything extra.
11+
12+
# How to Save Articles to Pocket Without an Extension
13+
14+
You can use a bookmarklet—a small JavaScript snippet saved as a bookmark—to send the current page directly to Pocket. Here’s how:
15+
16+
- Right-click on the following link: <a href="javascript:(function(){var url = encodeURIComponent(window.location.href); var pocketUrl = 'https://getpocket.com/save?url=' + url; window.open(pocketUrl, '_blank');})();">Add to Pocket</a> and select Copy Link Address.
17+
- Open your browser’s Bookmarks Manager:
18+
- [Google Chrome Bookmarks Manager](chrome://bookmarks/)
19+
- [Safari Bookmarks Manager](https://support.apple.com/guide/safari/bookmark-webpages-sfri35610/mac)
20+
- [Mozilla Firefox Bookmarks Manager](https://support.mozilla.org/en-US/kb/bookmarks-firefox)
21+
- Create a new bookmark.
22+
- Paste the copied URL into the URL field.
23+
- Set the title as "Add to Pocket".
24+
- Save the bookmark.
25+
26+
Whenever you’re on a page you want to save, simply click the bookmark, and the article will be added to Pocket automatically.
27+
28+
# How Does It Work?
29+
30+
This method leverages a simple JavaScript snippet embedded in the bookmarklet. Here’s what happens when you click it:
31+
- The script retrieves the URL of the current tab.
32+
- It appends that URL to getpocket.com/save.
33+
- Pocket processes the request and saves the article to your account.
34+
35+
That’s it—no extensions, no complex setups, just a quick and effective way to keep your reading list organized.
36+
37+
```javascript
38+
javascript:(function(){
39+
var url = encodeURIComponent(window.location.href);
40+
var pocketUrl = "https://getpocket.com/save?url=" + url;
41+
window.open(pocketUrl, '_blank');
42+
})();
43+
```
44+
45+
# Why This Works Well
46+
47+
- No need for an extension: Avoid potential security concerns and browser compatibility issues.
48+
- Lightweight & fast: It works instantly with just a single click.
49+
- Cross-browser compatibility: Works in Chrome, Firefox, Edge, and any other modern browser that supports JavaScript-based bookmarklets.
50+
51+
If you’re a Pocket user and have been missing the extension, this bookmarklet is a great alternative. Let me know if you try it out or if you have other neat workarounds for managing saved articles!

0 commit comments

Comments
 (0)