Watchpocket
This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.
什么是Watchpocket?
Watchpocket是由einartryggvi开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.”。
下载Watchpocket扩展crx文件
下载Watchpocket扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | jdhebcjihigmkcocnjgfhjkkommeadmh |
| 官方URL | https://chrome.google.com/webstore/detail/watchpocket/jdhebcjihigmkcocnjgfhjkkommeadmh |
| 简介 | This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks. |
| 文件大小 | 173 KB |
| 安装次数 | 95 |
| 当前版本 | 0.9.1 |
| 更新时间 | 2014-07-02 |
| 上架时间 | 2014-07-02 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | einartryggvi |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Watchpocket",
"description": "This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.",
"version": "0.9.1",
"icons": {
"128": "img\/appIcon.png"
},
"background": {
"scripts": [
"js\/vendor\/jquery.min.js",
"js\/main.js"
]
},
"permissions": [
"tabs",
"contextMenus",
"https:\/\/getpocket.com\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"browser_action": {
"default_icon": "img\/icon.png",
"default_popup": "bookmarksList.html",
"default_title": "View bookmarks"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/vendor\/jquery.min.js",
"js\/content.js"
]
}
],
"web_accessible_resources": [
"img\/*",
"notification.html",
"auth.html"
]
} | |