Copy Mailto
An extension to copy email and telephone links from the web.
Qu'est-ce que Copy Mailto ?
Copy Mailto est une extension Chrome développée par Prateek Surana, et sa fonction principale est "An extension to copy email and telephone links from the web.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Copy Mailto
Téléchargez les fichiers d'extension Copy Mailto au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
The one thing we can all agree on is that we hate it when the default mail app pops up after clicking on the mailto link. Most of the time we just want to copy the email address and that's where this extension comes into play. This extension adds a tooltip to the mailto and tel links allowing you to copy the email or phone number in those links directly instead of popping up the default apps for them.
Informations de Base sur l'Extension
Nom | Copy Mailto |
ID | ogmiianinhflijjkddacmlnglfgdcecf |
URL Officiel | https://chromewebstore.google.com/detail/copy-mailto/ogmiianinhflijjkddacmlnglfgdcecf |
Description | An extension to copy email and telephone links from the web. |
Taille du Fichier | 28.93 KB |
Nombre d'Installations | 18 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2020-11-29 |
Date de Publication | 2020-11-19 |
Développeur | Prateek Surana |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Mailto", "version": "1.0", "description": "An extension to copy email and telephone links from the web.", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "browser_action": { "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "144": "images\/icon-144.png", "192": "images\/icon-192.png" } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "144": "images\/icon-144.png", "192": "images\/icon-192.png" } } |