Copy Mailto
An extension to copy email and telephone links from the web.
O que é Copy Mailto?
Copy Mailto é uma extensão do Chrome desenvolvida por Prateek Surana, e sua principal característica é "An extension to copy email and telephone links from the web.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Copy Mailto
Baixe arquivos de extensão Copy Mailto no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Copy Mailto |
ID | ogmiianinhflijjkddacmlnglfgdcecf |
URL Oficial | https://chromewebstore.google.com/detail/copy-mailto/ogmiianinhflijjkddacmlnglfgdcecf |
Descrição | An extension to copy email and telephone links from the web. |
Tamanho do Arquivo | 28.93 KB |
Contagem de Instalações | 18 |
Versão Atual | 1.0 |
Última Atualização | 2020-11-29 |
Data de Publicação | 2020-11-19 |
Desenvolvedor | Prateek Surana |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |