Smart Bookmarks
Intelligently pops up related articles that might interest you, based on your bookmarks.
Co je Smart Bookmarks?
Smart Bookmarks je rozšíření Chrome vyvinuté rahulr92, a jeho hlavní funkcí je „Intelligently pops up related articles that might interest you, based on your bookmarks.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Smart Bookmarks
Stáhněte si soubory rozšíření Smart Bookmarks ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | cjjdkckpfbjogcbpkbagcphfejfpnjkc |
Oficiální URL | https://chrome.google.com/webstore/detail/smart-bookmarks/cjjdkckpfbjogcbpkbagcphfejfpnjkc |
Popis | Intelligently pops up related articles that might interest you, based on your bookmarks. |
Velikost souboru | 58.15 KB |
Počet instalací | 10 |
Aktuální Verze | 0.0.1 |
Poslední Aktualizace | 2016-06-23 |
Datum Vydání | 2016-06-23 |
Hodnocení | 3.50/5 Celkem 2 Hodnocení |
Vývojář | rahulr92 |
Typ Platby | free |
Podporované Jazyky | 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" ] } |