Smart Bookmarks
Intelligently pops up related articles that might interest you, based on your bookmarks.
Smart Bookmarks क्या है?
Smart Bookmarks rahulr92 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Intelligently pops up related articles that might interest you, based on your bookmarks."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Smart Bookmarks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |