I hate mailto
Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.
Wat is I hate mailto?
I hate mailto is een Chrome-extensie ontwikkeld door tekeste.kidanu, en de belangrijkste functie is "Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.".
Extensie Screenshots
Download het CRX-bestand van de extensie I hate mailto
Download I hate 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
This handy Google Chrome and Firefox extension will copy the email address to your clipboard from mailto links and stop default mail client which you never use from opening. Say goodbye to rage inducing email clients interrupting your work.
Basisinformatie over de Extensie
Naam | I hate mailto |
ID | belceepkbpkcofbpojmfkmliaimbodgn |
Officiële URL | https://chromewebstore.google.com/detail/i-hate-mailto/belceepkbpkcofbpojmfkmliaimbodgn |
Beschrijving | Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face. |
Bestandsgrootte | 101 KB |
Aantal Installaties | 112 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2019-03-08 |
Publicatiedatum | 2019-03-08 |
Beoordeling | 3.50/5 Totaal 2 Beoordelingen |
Ontwikkelaar | tekeste.kidanu |
Betalingswijze | free |
Extensiewebsite | http://ihatemailto.com |
Help Pagina-URL | https://airtable.com/shrJ8ILiayAYCFd5V |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "I hate mailto", "description": "Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.", "version": "1.0", "homepage_url": "https:\/\/ihatemailto.com", "manifest_version": 2, "browser_action": { "default_icon": { "128": "icon128.png" } }, "icons": { "128": "icon128.png" }, "permissions": [ "activeTab", "storage", "webRequest", "*:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "css": [ "tippy.css", "content.css" ], "js": [ "tippy.js", "bundle.js" ] } ] } |