Save to Pocket (mini)
Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.
Vad är Save to Pocket (mini)?
Save to Pocket (mini) är en Chrome-tillägg utvecklad av evmar, och dess huvudfunktion är "Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.".
Tilläggsskärmbilder
Ladda ner Save to Pocket (mini)-förlängningens CRX-fil
Ladda ner Save to Pocket (mini)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Save to Pocket (mini) |
ID | calnfcidhlhdmmmnicdpddbmmjmfohem |
Officiell webbadress | https://chromewebstore.google.com/detail/save-to-pocket-mini/calnfcidhlhdmmmnicdpddbmmjmfohem |
Beskrivning | Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions. |
Filstorlek | 8.66 KB |
Antal Installationer | 1,016 |
Aktuell Version | 1 |
Senast Uppdaterad | 2014-08-08 |
Publiceringsdatum | 2014-08-08 |
Betyg | 4.69/5 Totalt 16 Betyg |
Utvecklare | evmar |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/martine/pocket-mini |
Stödda Språk | 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 } |