Copy Text with URL
Copy current selected text and current URL
Copy Text with URL क्या है?
Copy Text with URL jojonki द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy current selected text and current URL"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Copy Text with URL एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Copy selected text and current URL jointly! - Plain copy mode You can fire the action by either clicking the extension icon or pressing "Ctrl+Shift+C". The format is like below. selected_text http://curent_url - Markdown copy mode You can fire the action by pressing "Ctrl+Shift+M". The format is like below. [selected_text](http://current_url) You can also customize the shortcuts in your extension page. Perhaps, some shortcuts don't work in your environment. Please try the other ones. - chrome://extensions/shortcuts This extension is publicly available. https://github.com/jojonki/copy-text-with-url
एक्सटेंशन की मूल जानकारी
नाम | Copy Text with URL |
ID | hbeifjjbjnpnpnffifmojplmlcjakhii |
आधिकारिक URL | https://chromewebstore.google.com/detail/copy-text-with-url/hbeifjjbjnpnpnffifmojplmlcjakhii |
विवरण | Copy current selected text and current URL |
फ़ाइल का आकार | 531 KB |
स्थापना संख्या | 61 |
वर्तमान संस्करण | 2.0 |
अंतिम अपडेट | 2022-12-29 |
प्रकाशन तिथि | 2019-12-04 |
रेटिंग | 4.00/5 कुल 1 रेटिंग्स |
डेवलपर | jojonki |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/jojonki |
सहायता पृष्ठ URL | https://github.com/jojonki/copy-text-with-url |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Text with URL", "version": "2.0", "description": "Copy current selected text and current URL", "permissions": [ "activeTab", "notifications", "scripting" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "default_title": "Copy Text with URL" }, "commands": { "copy-text-with-url-as-plain": { "suggested_key": { "default": "Ctrl+Shift+C", "mac": "MacCtrl+Shift+C" }, "description": "Copy text with URL as plain text", "global": false }, "copy-text-with-url-as-markdown": { "suggested_key": { "default": "Ctrl+Shift+M", "mac": "MacCtrl+Shift+M" }, "description": "Copy text with URL as markdown style", "global": false } }, "icons": { "16": "images\/icon_128.png", "32": "images\/icon_128.png", "48": "images\/icon_128.png", "128": "images\/icon_128.png" }, "manifest_version": 3 } |