Watchpocket
This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.
O que é Watchpocket?
Watchpocket é uma extensão do Chrome desenvolvida por einartryggvi, e sua principal característica é "This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.".
Baixar o arquivo CRX da Extensão Watchpocket
Baixe arquivos de extensão Watchpocket no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Informações Básicas da Extensão
Nome | |
ID | jdhebcjihigmkcocnjgfhjkkommeadmh |
URL Oficial | https://chrome.google.com/webstore/detail/watchpocket/jdhebcjihigmkcocnjgfhjkkommeadmh |
Descrição | This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks. |
Tamanho do Arquivo | 173 KB |
Contagem de Instalações | 95 |
Versão Atual | 0.9.1 |
Última Atualização | 2014-07-02 |
Data de Publicação | 2014-07-02 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | einartryggvi |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |