Save to Pocket (mini)
Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.
什么是Save to Pocket (mini)?
Save to Pocket (mini)是由evmar开发的Chrome扩展程序,该扩展的主要功能是“Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.”。
扩展截图
下载Save to Pocket (mini)扩展crx文件
下载Save to Pocket (mini)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Save to Pocket (mini) |
ID | calnfcidhlhdmmmnicdpddbmmjmfohem |
官方URL | https://chromewebstore.google.com/detail/save-to-pocket-mini/calnfcidhlhdmmmnicdpddbmmjmfohem |
简介 | Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions. |
文件大小 | 8.66 KB |
安装次数 | 1,016 |
当前版本 | 1 |
更新时间 | 2014-08-08 |
上架时间 | 2014-08-08 |
评分 | 4.69/5 共16次评分 |
开发者 | evmar |
付费类型 | free |
扩展官网 | https://github.com/martine/pocket-mini |
支持的语言 | 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 } |