Save to Pocket (mini)
Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.
What is Save to Pocket (mini)?
Save to Pocket (mini) is a Chrome extension developed by evmar, and its main feature is "Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.".
Extension Screenshots
Download Save to Pocket (mini) Extension CRX File
Download Save to Pocket (mini) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
I think Pocket is great, but I don't like how their Chrome extension requires so many permissions. (It even makes use of those permissions to e.g. modify the Hacker News page. I appreciate this can be turned off via their settings but I'd prefer it didn't even have the capability.) This extension is the minimal code to auth into Pocket and save URLs into it. Read the source here: https://github.com/martine/pocket-mini For more features, use the official Pocket extension: https://chrome.google.com/webstore/detail/save-to-pocket/niloccemoadcdkdjlinkgdfekeahmflj
Extension Basic Information
Name | Save to Pocket (mini) |
ID | calnfcidhlhdmmmnicdpddbmmjmfohem |
Official URL | https://chromewebstore.google.com/detail/save-to-pocket-mini/calnfcidhlhdmmmnicdpddbmmjmfohem |
Description | Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions. |
File Size | 8.66 KB |
Installation Count | 1,016 |
Current Version | 1 |
Last Updated | 2014-08-08 |
Publish Date | 2014-08-08 |
Rating | 4.69/5 Total 16 Ratings |
Developer | evmar |
Payment Type | free |
Extension Website | https://github.com/martine/pocket-mini |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Save to Pocket (mini)", "description": "Adds a toolbar button to save the current page to Pocket, without requiring the \"all data\" or \"all websites\" permissions.", "version": "1", "browser_action": { "default_icon": "icon.png", "default_title": "Add to Pocket", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/getpocket.com\/" ], "web_accessible_resources": [ "auth.html" ], "manifest_version": 2 } |