UnQuote for Gmail
Unquote text of previous mails from the reply
Was ist UnQuote for Gmail?
UnQuote for Gmail ist eine Chrome-Erweiterung, die von xcelancer entwickelt wurde, und ihr Hauptmerkmal ist "Unquote text of previous mails from the reply".
Erweiterungsscreenshots
UnQuote for Gmail-Erweiterungs-CRX-Datei herunterladen
Laden Sie UnQuote for Gmail-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | UnQuote for Gmail |
ID | johachenlhehijdicggbfbkdkkeikilf |
Offizielle URL | https://chromewebstore.google.com/detail/unquote-for-gmail/johachenlhehijdicggbfbkdkkeikilf |
Beschreibung | Unquote text of previous mails from the reply |
Dateigröße | 446 KB |
Installationsanzahl | 441 |
Aktuelle Version | 1.0.4 |
Letztes Update | 2023-10-25 |
Veröffentlichungsdatum | 2018-11-05 |
Bewertung | 3.00/5 Insgesamt 9 Bewertungen |
Entwickler | xcelancer |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Vikasg7/UnQuote-for-Gmail |
Hilfeseite URL | https://github.com/Vikasg7/UnQuote-for-Gmail/issues |
Unterstützte Sprachen | 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" } ] } |