UnQuote for Gmail
Unquote text of previous mails from the reply
Qu'est-ce que UnQuote for Gmail ?
UnQuote for Gmail est une extension Chrome développée par xcelancer, et sa fonction principale est "Unquote text of previous mails from the reply".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension UnQuote for Gmail
Téléchargez les fichiers d'extension UnQuote for Gmail au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | UnQuote for Gmail |
ID | johachenlhehijdicggbfbkdkkeikilf |
URL Officiel | https://chromewebstore.google.com/detail/unquote-for-gmail/johachenlhehijdicggbfbkdkkeikilf |
Description | Unquote text of previous mails from the reply |
Taille du Fichier | 446 KB |
Nombre d'Installations | 441 |
Version Actuelle | 1.0.4 |
Dernière Mise à Jour | 2023-10-25 |
Date de Publication | 2018-11-05 |
Évaluation | 3.00/5 Total 9 Évaluations |
Développeur | xcelancer |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Vikasg7/UnQuote-for-Gmail |
URL de la Page d'Aide | https://github.com/Vikasg7/UnQuote-for-Gmail/issues |
Langues Prises en Charge | 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" } ] } |