Copy Mailto
An extension to copy email and telephone links from the web.
Wat is Copy Mailto?
Copy Mailto is een Chrome-extensie ontwikkeld door Prateek Surana, en de belangrijkste functie is "An extension to copy email and telephone links from the web.".
Extensie Screenshots
Download het CRX-bestand van de extensie Copy Mailto
Download Copy Mailto-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Copy Mailto |
ID | ogmiianinhflijjkddacmlnglfgdcecf |
Officiële URL | https://chromewebstore.google.com/detail/copy-mailto/ogmiianinhflijjkddacmlnglfgdcecf |
Beschrijving | An extension to copy email and telephone links from the web. |
Bestandsgrootte | 28.93 KB |
Aantal Installaties | 18 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2020-11-29 |
Publicatiedatum | 2020-11-19 |
Ontwikkelaar | Prateek Surana |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |