Copy Link With Title
This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
Copy Link With Title क्या है?
Copy Link With Title Paul Cohn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Copy Link With Title एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
* Copy a link with the title for pasting into a notetaking app for clearer notes * Copy as HTML and paste into code * Copy as Markdown and paste into Reddit or Github * Define your own format for whatever crazy schemes you have Update 2021/08/25: * Updated icon for better visibility in dark mode. Update 2020/01/17: * Newlines work!
एक्सटेंशन की मूल जानकारी
नाम | Copy Link With Title |
ID | cfbjnjeaoamknmdojhgcblkebcphmcei |
आधिकारिक URL | https://chromewebstore.google.com/detail/copy-link-with-title/cfbjnjeaoamknmdojhgcblkebcphmcei |
विवरण | This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format. |
फ़ाइल का आकार | 58.18 KB |
स्थापना संख्या | 1,412 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2021-08-25 |
प्रकाशन तिथि | 2020-01-16 |
रेटिंग | 3.54/5 कुल 13 रेटिंग्स |
डेवलपर | Paul Cohn |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://twitter.com/paulsterr |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Copy Link With Title", "description": "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.", "version": "1.0.2", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "activeTab", "storage" ] } |