Smart Bookmarks
Intelligently pops up related articles that might interest you, based on your bookmarks.
Apa itu Smart Bookmarks?
Smart Bookmarks adalah ekstensi Chrome yang dikembangkan oleh rahulr92, dan fitur utamanya adalah "Intelligently pops up related articles that might interest you, based on your bookmarks.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Smart Bookmarks
Unduh file ekstensi Smart Bookmarks 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
Intelligently pops up related articles that might interest you, based on your bookmarks. Select the notification to read the entire article in a new tab.
Informasi Dasar Ekstensi
Nama | |
ID | cjjdkckpfbjogcbpkbagcphfejfpnjkc |
URL Resmi | https://chrome.google.com/webstore/detail/smart-bookmarks/cjjdkckpfbjogcbpkbagcphfejfpnjkc |
Deskripsi | Intelligently pops up related articles that might interest you, based on your bookmarks. |
Ukuran File | 58.15 KB |
Jumlah Instalasi | 10 |
Versi Saat Ini | 0.0.1 |
Terakhir Diperbarui | 2016-06-23 |
Tanggal Publikasi | 2016-06-23 |
Penilaian | 3.50/5 Total 2 Penilaian |
Pengembang | rahulr92 |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Smart Bookmarks", "description": "Intelligently pops up related articles that might interest you, based on your bookmarks.", "version": "0.0.1", "author": "Rahul R", "homepage_url": "https:\/\/rahulr92.wordpress.com\/", "default_locale": "en", "content_scripts": [ { "js": [ "jquery.min.js", "init.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "externally_connectable": { "matches": [ "*:\/\/*.lateral.io\/*" ] }, "background": { "scripts": [ "jquery.min.js", "init.js" ], "persistent": false }, "icons": { "16": "bookmark.png", "48": "bookmark.png", "128": "bookmark.png" }, "browser_action": { "default_icon": { "19": "bookmark.png", "38": "bookmark.png" }, "default_title": "Better Bookmark Button", "default_popup": "background.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+B", "windows": "Ctrl+B", "mac": "Command+B", "chromeos": "Ctrl+B", "linux": "Ctrl+B" } } }, "permissions": [ "bookmarks", "tabs", "notifications" ] } |