Watchpocket
This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.
What is Watchpocket?
Watchpocket is a Chrome extension developed by einartryggvi, and its main feature is "This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.".
Download Watchpocket Extension CRX File
Download Watchpocket 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
Extension Basic Information
| Name | |
| ID | jdhebcjihigmkcocnjgfhjkkommeadmh |
| Official URL | https://chrome.google.com/webstore/detail/watchpocket/jdhebcjihigmkcocnjgfhjkkommeadmh |
| Description | This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks. |
| File Size | 173 KB |
| Installation Count | 95 |
| Current Version | 0.9.1 |
| Last Updated | 2014-07-02 |
| Publish Date | 2014-07-02 |
| Rating | 5.00/5 Total 2 Ratings |
| Developer | einartryggvi |
| Payment Type | free |
| Supported Languages | 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"
]
} | |