Links to Bookmarks
Add a bunch of links to your bookmarks
Links to Bookmarks क्या है?
Links to Bookmarks cI_-__-_Io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add a bunch of links to your bookmarks"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Links to Bookmarks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
If you have a list of links that you want to add to your bookmarks, this extension is perfect for you. 📋 Clipboard support Detects the links in your clipboard and pre-fills the input with them. 🤖 Automatic title fetching Guesses and pre-fills the title value of your bookmark automatically. 🎯 Redirection resolving Follows the "shortened" links to their real destination, no more "bit.ly", "t.co", and other obfuscated URLs in your bookmarks (which means fewer duplicates). 🔎 Manual reviewing For each link, Links to Bookmarks pre-fills the title and URL inputs, but you can still manually review and change them to your liking. 🐫 Duplicates detection Provides a button to remove your existing bookmarks from your input, and notifies you if you're trying to add a link that you have already bookmarked. Compatible with the extension "Export saved links" if you want to export your saved links from FB to your bookmarks.
एक्सटेंशन की मूल जानकारी
नाम | Links to Bookmarks |
ID | ldkcelmcmlapjkjhfmgndefmnjpckalj |
आधिकारिक URL | https://chromewebstore.google.com/detail/links-to-bookmarks/ldkcelmcmlapjkjhfmgndefmnjpckalj |
विवरण | Add a bunch of links to your bookmarks |
फ़ाइल का आकार | 1.14 MB |
स्थापना संख्या | 269 |
वर्तमान संस्करण | 0.2.0 |
अंतिम अपडेट | 2021-03-24 |
प्रकाशन तिथि | 2020-09-13 |
रेटिंग | 4.50/5 कुल 2 रेटिंग्स |
डेवलपर | cI_-__-_Io |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://twitter.com/j_____________n |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Links to Bookmarks", "version": "0.2.0", "description": "Add a bunch of links to your bookmarks", "background": { "persistent": false, "scripts": [ "assets\/background-5aeee333.js" ] }, "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "96": "assets\/icon96.png", "128": "assets\/icon128.png" }, "browser_action": { "default_title": "Links to Bookmarks", "default_popup": "browser-action\/popup.html" }, "content_scripts": [ { "js": [ "assets\/content-script-3def6a44.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle" } ], "permissions": [ "bookmarks", "notifications", "storage", "webNavigation", "clipboardRead", "tabs" ], "web_accessible_resources": [ "messages-41f5149f.js", "content-script\/content-script.js" ] } |