Smart Bookmarks
Intelligently pops up related articles that might interest you, based on your bookmarks.
Smart Bookmarksとは何ですか?
Smart Bookmarksはrahulr92によって開発されたChromeの拡張機能で、その主な機能は「Intelligently pops up related articles that might interest you, based on your bookmarks.」です。
拡張機能のスクリーンショット
Smart Bookmarks拡張機能のCRXファイルをダウンロード
Smart Bookmarks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | cjjdkckpfbjogcbpkbagcphfejfpnjkc |
公式URL | https://chrome.google.com/webstore/detail/smart-bookmarks/cjjdkckpfbjogcbpkbagcphfejfpnjkc |
説明 | Intelligently pops up related articles that might interest you, based on your bookmarks. |
ファイルサイズ | 58.15 KB |
インストール数 | 10 |
現在のバージョン | 0.0.1 |
最終更新日 | 2016-06-23 |
公開日 | 2016-06-23 |
評価 | 3.50/5 合計 2 レビュー |
開発者 | rahulr92 |
支払い方法 | free |
対応言語 | 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" ] } |