Watchpocket
This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.
Was ist Watchpocket?
Watchpocket ist eine Chrome-Erweiterung, die von einartryggvi entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.".
Watchpocket-Erweiterungs-CRX-Datei herunterladen
Laden Sie Watchpocket-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
Name | |
ID | jdhebcjihigmkcocnjgfhjkkommeadmh |
Offizielle URL | https://chrome.google.com/webstore/detail/watchpocket/jdhebcjihigmkcocnjgfhjkkommeadmh |
Beschreibung | This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks. |
Dateigröße | 173 KB |
Installationsanzahl | 95 |
Aktuelle Version | 0.9.1 |
Letztes Update | 2014-07-02 |
Veröffentlichungsdatum | 2014-07-02 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | einartryggvi |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |