Multicopy
Copy multiple texts and do multiple pastes from right click menu
Multicopy क्या है?
Multicopy trishul.goel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy multiple texts and do multiple pastes from right click menu"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Multicopy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A usability extension, which lets you to copy multiple texts and shows them in right click menu. Paste any of the text in any input field. To Copy: Right click on selected text -> Multicopy -> Copy this! To Paste: Right click on text area -> Multicopy -> Select the entry In some case for paste if clicking entry doesn't work (probably like Facebook), the text is copied to clipboard and you can press Ctrl(command) + V to paste the text in to the box.
एक्सटेंशन की मूल जानकारी
नाम | Multicopy |
ID | bbihhbmcpmmbidebeomhomjelncfghcl |
आधिकारिक URL | https://chromewebstore.google.com/detail/multicopy/bbihhbmcpmmbidebeomhomjelncfghcl |
विवरण | Copy multiple texts and do multiple pastes from right click menu |
फ़ाइल का आकार | 20.84 KB |
स्थापना संख्या | 11,063 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2021-04-04 |
प्रकाशन तिथि | 2019-03-08 |
रेटिंग | 3.75/5 कुल 20 रेटिंग्स |
डेवलपर | trishul.goel |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/tsl143/jsDemos/tree/master/multicopy_webext |
सहायता पृष्ठ URL | https://github.com/tsl143/jsDemos/tree/master/multicopy_webext |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Multicopy", "description": "Copy multiple texts and do multiple pastes from right click menu", "version": "1.0.0", "icons": { "32": "icons\/icon_32.png", "64": "icons\/icon_64.png", "128": "icons\/icon_128.png" }, "background": { "scripts": [ "polyfill.js", "bg.js" ] }, "options_ui": { "page": "options.html" }, "permissions": [ "contextMenus", "activeTab", "notifications", "storage", "clipboardWrite" ], "web_accessible_resources": [ "icons\/icon_64.png" ] } |