Watchpocket
This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.
Qu'est-ce que Watchpocket ?
Watchpocket est une extension Chrome développée par einartryggvi, et sa fonction principale est "This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.".
Télécharger le fichier CRX de l'extension Watchpocket
Téléchargez les fichiers d'extension Watchpocket au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Informations de Base sur l'Extension
Nom | |
ID | jdhebcjihigmkcocnjgfhjkkommeadmh |
URL Officiel | 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. |
Taille du Fichier | 173 KB |
Nombre d'Installations | 95 |
Version Actuelle | 0.9.1 |
Dernière Mise à Jour | 2014-07-02 |
Date de Publication | 2014-07-02 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | einartryggvi |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |