Smart Bookmarks
Intelligently pops up related articles that might interest you, based on your bookmarks.
Smart Bookmarksคืออะไร?
Smart Bookmarks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rahulr92 และคุณลักษณะหลักของมันคือ "Intelligently pops up related articles that might interest you, based on your bookmarks."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Smart Bookmarks
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |