Link With Context
Copy the text of a link and its hyperlink as one.
Link With Context क्या है?
Link With Context mrjaeger00 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy the text of a link and its hyperlink as one."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Link With Context एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Link With Context lets you provide some context for the links you share. This is done in 1 of 2 ways: PLEASE NOTE: After initially installing Link With Context, it will not work on any currently open tabs until they are refreshed. Copying a link outright: Using Link With Context when you copy a link, what is actually copied is text in the form ' "text of link" - '. Ultra useful for sharing reddit links that only make sense if the title is included as well! (and the inspiration for this extensions). Highlighting text: Using Links With Context on highlighted text, what is actually coped is text in the form ' "highlighted text" -'. This will work with any text - you could highlight the whole page and still get a working Link With Context. There is however a limit to how much text can be copied at a time, and therefore only the first 7500 characters of the highlighted/link text will be included.
एक्सटेंशन की मूल जानकारी
नाम | Link With Context |
ID | ghpdiolckpncfliklbmgiljggbokjban |
आधिकारिक URL | https://chromewebstore.google.com/detail/link-with-context/ghpdiolckpncfliklbmgiljggbokjban |
विवरण | Copy the text of a link and its hyperlink as one. |
फ़ाइल का आकार | 9.59 KB |
स्थापना संख्या | 749 |
वर्तमान संस्करण | 0.1.1 |
अंतिम अपडेट | 2014-09-10 |
प्रकाशन तिथि | 2014-09-10 |
रेटिंग | 3.75/5 कुल 8 रेटिंग्स |
डेवलपर | mrjaeger00 |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Link With Context", "short_name": "LWC", "description": "Copy the text of a link and its hyperlink as one.", "version": "0.1.1", "permissions": [ "contextMenus", "clipboardWrite" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "icons": { "16": "icon_16.png", "32": "icon_32.png", "64": "icon_64.png" } } |