eMailTo:Clipboard
This extension overides the html mailto: default and copys the email to your clipboard instead.
Apa itu eMailTo:Clipboard?
eMailTo:Clipboard adalah ekstensi Chrome yang dikembangkan oleh aturkewi, dan fitur utamanya adalah "This extension overides the html mailto: default and copys the email to your clipboard instead.".
Unduh Berkas CRX Ekstensi eMailTo:Clipboard
Unduh file ekstensi eMailTo:Clipboard 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
When installed, this app will overide the mailto in an html link and just copy the email address to your clipboard rather than opening up your default mail client.
Informasi Dasar Ekstensi
Nama | eMailTo:Clipboard |
ID | dpckhpnekcojocijmcdpondmicbkbgpo |
URL Resmi | https://chromewebstore.google.com/detail/emailtoclipboard/dpckhpnekcojocijmcdpondmicbkbgpo |
Deskripsi | This extension overides the html mailto: default and copys the email to your clipboard instead. |
Ukuran File | 23.48 KB |
Jumlah Instalasi | 193 |
Versi Saat Ini | 1.5 |
Terakhir Diperbarui | 2017-03-07 |
Tanggal Publikasi | 2017-03-07 |
Penilaian | 5.00/5 Total 4 Penilaian |
Pengembang | aturkewi |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "eMailTo:Clipboard", "description": "This extension overides the html mailto: default and copys the email to your clipboard instead.", "version": "1.5", "browser_action": { "default_icon": "email-to-clipboard-logo.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "index.js" ], "css": [ "tooltip.css" ], "run_at": "document_idle" } ] } |