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 |
官方網址 | 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" ] } |