UnQuote for Gmail
Unquote text of previous mails from the reply
Cos'è UnQuote for Gmail?
UnQuote for Gmail è un'estensione di Chrome sviluppata da xcelancer, e la sua funzione principale è "Unquote text of previous mails from the reply".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione UnQuote for Gmail
Scarica i file di estensione UnQuote for Gmail in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | UnQuote for Gmail |
ID | johachenlhehijdicggbfbkdkkeikilf |
URL Ufficiale | https://chromewebstore.google.com/detail/unquote-for-gmail/johachenlhehijdicggbfbkdkkeikilf |
Descrizione | Unquote text of previous mails from the reply |
Dimensione del File | 446 KB |
Conteggio Installazioni | 441 |
Versione Corrente | 1.0.4 |
Ultimo Aggiornamento | 2023-10-25 |
Data di Pubblicazione | 2018-11-05 |
Valutazione | 3.00/5 Totale 9 Valutazioni |
Sviluppatore | xcelancer |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Vikasg7/UnQuote-for-Gmail |
URL della Pagina di Aiuto | https://github.com/Vikasg7/UnQuote-for-Gmail/issues |
Lingue Supportate | 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" } ] } |