Smart Bookmarks
Intelligently pops up related articles that might interest you, based on your bookmarks.
Was ist Smart Bookmarks?
Smart Bookmarks ist eine Chrome-Erweiterung, die von rahulr92 entwickelt wurde, und ihr Hauptmerkmal ist "Intelligently pops up related articles that might interest you, based on your bookmarks.".
Erweiterungsscreenshots
Smart Bookmarks-Erweiterungs-CRX-Datei herunterladen
Laden Sie Smart Bookmarks-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
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | cjjdkckpfbjogcbpkbagcphfejfpnjkc |
Offizielle URL | https://chrome.google.com/webstore/detail/smart-bookmarks/cjjdkckpfbjogcbpkbagcphfejfpnjkc |
Beschreibung | Intelligently pops up related articles that might interest you, based on your bookmarks. |
Dateigröße | 58.15 KB |
Installationsanzahl | 10 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2016-06-23 |
Veröffentlichungsdatum | 2016-06-23 |
Bewertung | 3.50/5 Insgesamt 2 Bewertungen |
Entwickler | rahulr92 |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |