Copy mailto links to clipboard
When you click a mailto link, all email addresses are directly copied to the clipboard.
Copy mailto links to clipboard क्या है?
Copy mailto links to clipboard anthonybruno द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "When you click a mailto link, all email addresses are directly copied to the clipboard."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Copy mailto links to clipboard एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
When you click on a link that begins with "mailto," all of the email addresses are immediately copied to the clipboard. Instead of opening Outlook or Mail.app by default, this extension copies all email addresses within a mailto link directly to the clipboard. - Supports all kinds of email address - Automatically ignores bcc, subject, etc. - Copies directly to your system's clipboard - Provides a notification when the address is successfully copied - Supports light and dark mode - Can turn alert off and copy email silently
एक्सटेंशन की मूल जानकारी
नाम | Copy mailto links to clipboard |
ID | ocffkcplakjlhbaadfcokiiflaelnaib |
आधिकारिक URL | https://chromewebstore.google.com/detail/copy-mailto-links-to-clip/ocffkcplakjlhbaadfcokiiflaelnaib |
विवरण | When you click a mailto link, all email addresses are directly copied to the clipboard. |
फ़ाइल का आकार | 15.52 KB |
स्थापना संख्या | 58 |
वर्तमान संस्करण | 0.2 |
अंतिम अपडेट | 2023-04-19 |
प्रकाशन तिथि | 2023-04-17 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | anthonybruno |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://abruno.net |
सहायता पृष्ठ URL | https://abruno.net/copy-mailto-privacy.html |
गोपनीयता नीति पृष्ठ URL | https://abruno.net/copy-mailto-privacy.html |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Copy mailto links to clipboard", "version": "0.2", "description": "When you click a mailto link, all email addresses are directly copied to the clipboard.", "options_ui": { "page": "options.html", "open_in_tab": true }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |