I hate mailto
Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.
Apa itu I hate mailto?
I hate mailto adalah ekstensi Chrome yang dikembangkan oleh tekeste.kidanu, dan fitur utamanya adalah "Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi I hate mailto
Unduh file ekstensi I hate mailto dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | I hate mailto |
ID | belceepkbpkcofbpojmfkmliaimbodgn |
URL Resmi | https://chromewebstore.google.com/detail/i-hate-mailto/belceepkbpkcofbpojmfkmliaimbodgn |
Deskripsi | Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face. |
Ukuran File | 101 KB |
Jumlah Instalasi | 112 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2019-03-08 |
Tanggal Publikasi | 2019-03-08 |
Penilaian | 3.50/5 Total 2 Penilaian |
Pengembang | tekeste.kidanu |
Tipe Pembayaran | free |
Situs Ekstensi | http://ihatemailto.com |
URL Halaman Bantuan | https://airtable.com/shrJ8ILiayAYCFd5V |
Bahasa yang Didukung | 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" ] } ] } |