I hate mailto
Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.
Was ist I hate mailto?
I hate mailto ist eine Chrome-Erweiterung, die von tekeste.kidanu entwickelt wurde, und ihr Hauptmerkmal ist "Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.".
Erweiterungsscreenshots
I hate mailto-Erweiterungs-CRX-Datei herunterladen
Laden Sie I hate mailto-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | I hate mailto |
ID | belceepkbpkcofbpojmfkmliaimbodgn |
Offizielle URL | https://chromewebstore.google.com/detail/i-hate-mailto/belceepkbpkcofbpojmfkmliaimbodgn |
Beschreibung | Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face. |
Dateigröße | 101 KB |
Installationsanzahl | 112 |
Aktuelle Version | 1.0 |
Letztes Update | 2019-03-08 |
Veröffentlichungsdatum | 2019-03-08 |
Bewertung | 3.50/5 Insgesamt 2 Bewertungen |
Entwickler | tekeste.kidanu |
Zahlungsart | free |
Erweiterungswebsite | http://ihatemailto.com |
Hilfeseite URL | https://airtable.com/shrJ8ILiayAYCFd5V |
Unterstützte Sprachen | 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" ] } ] } |