Smart Bookmarks
Intelligently pops up related articles that might interest you, based on your bookmarks.
Qu'est-ce que Smart Bookmarks ?
Smart Bookmarks est une extension Chrome développée par rahulr92, et sa fonction principale est "Intelligently pops up related articles that might interest you, based on your bookmarks.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Smart Bookmarks
Téléchargez les fichiers d'extension Smart Bookmarks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | cjjdkckpfbjogcbpkbagcphfejfpnjkc |
URL Officiel | https://chrome.google.com/webstore/detail/smart-bookmarks/cjjdkckpfbjogcbpkbagcphfejfpnjkc |
Description | Intelligently pops up related articles that might interest you, based on your bookmarks. |
Taille du Fichier | 58.15 KB |
Nombre d'Installations | 10 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2016-06-23 |
Date de Publication | 2016-06-23 |
Évaluation | 3.50/5 Total 2 Évaluations |
Développeur | rahulr92 |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |