UnQuote for Gmail
Unquote text of previous mails from the reply
Apa itu UnQuote for Gmail?
UnQuote for Gmail adalah ekstensi Chrome yang dikembangkan oleh xcelancer, dan fitur utamanya adalah "Unquote text of previous mails from the reply".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi UnQuote for Gmail
Unduh file ekstensi UnQuote for Gmail 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
UnQuote for Gmail is a free chrome extension that removes quoted text of previous mails from the current reply. Here is how it works :- - Download the extension. - Click on extension popup and enable it. - Reload the gmail window, if opened already. - Now open any conversation and click "Reply". - Write your reply and click Send. - It also take care of signatures and keep them intact. Report any issue here https://github.com/Vikasg7/UnQuote-for-Gmail/issues Enjoy!
Informasi Dasar Ekstensi
Nama | UnQuote for Gmail |
ID | johachenlhehijdicggbfbkdkkeikilf |
URL Resmi | https://chromewebstore.google.com/detail/unquote-for-gmail/johachenlhehijdicggbfbkdkkeikilf |
Deskripsi | Unquote text of previous mails from the reply |
Ukuran File | 446 KB |
Jumlah Instalasi | 441 |
Versi Saat Ini | 1.0.4 |
Terakhir Diperbarui | 2023-10-25 |
Tanggal Publikasi | 2018-11-05 |
Penilaian | 3.00/5 Total 9 Penilaian |
Pengembang | xcelancer |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/Vikasg7/UnQuote-for-Gmail |
URL Halaman Bantuan | https://github.com/Vikasg7/UnQuote-for-Gmail/issues |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "UnQuote for Gmail", "description": "Unquote text of previous mails from the reply", "version": "1.0.4", "manifest_version": 3, "icons": { "128": "assets\/icon.png" }, "background": { "service_worker": "background\/index.js", "type": "module" }, "action": { "default_title": "UnQuote for Gmail", "default_popup": "popup\/index.html" }, "permissions": [ "storage" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "cs\/index.js" ], "run_at": "document_end" } ] } |