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 |
官方網址 | 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" ] } |