Watchpocket
This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.
Apa itu Watchpocket?
Watchpocket adalah ekstensi Chrome yang dikembangkan oleh einartryggvi, dan fitur utamanya adalah "This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.".
Unduh Berkas CRX Ekstensi Watchpocket
Unduh file ekstensi Watchpocket dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Informasi Dasar Ekstensi
Nama | |
ID | jdhebcjihigmkcocnjgfhjkkommeadmh |
URL Resmi | https://chrome.google.com/webstore/detail/watchpocket/jdhebcjihigmkcocnjgfhjkkommeadmh |
Deskripsi | This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks. |
Ukuran File | 173 KB |
Jumlah Instalasi | 95 |
Versi Saat Ini | 0.9.1 |
Terakhir Diperbarui | 2014-07-02 |
Tanggal Publikasi | 2014-07-02 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | einartryggvi |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |