I hate mailto
Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.
What is I hate mailto?
I hate mailto is a Chrome extension developed by tekeste.kidanu, and its main feature is "Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.".
Extension Screenshots
Download I hate mailto Extension CRX File
Download I hate mailto extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | I hate mailto |
ID | belceepkbpkcofbpojmfkmliaimbodgn |
Official URL | https://chromewebstore.google.com/detail/i-hate-mailto/belceepkbpkcofbpojmfkmliaimbodgn |
Description | Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face. |
File Size | 101 KB |
Installation Count | 112 |
Current Version | 1.0 |
Last Updated | 2019-03-08 |
Publish Date | 2019-03-08 |
Rating | 3.50/5 Total 2 Ratings |
Developer | tekeste.kidanu |
Payment Type | free |
Extension Website | http://ihatemailto.com |
Help Page URL | https://airtable.com/shrJ8ILiayAYCFd5V |
Supported Languages | 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" ] } ] } |