UnQuote for Gmail
Unquote text of previous mails from the reply
¿Qué es UnQuote for Gmail?
UnQuote for Gmail es una extensión de Chrome desarrollada por xcelancer, y su función principal es "Unquote text of previous mails from the reply".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión UnQuote for Gmail
Descarga archivos de extensión UnQuote for Gmail en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | UnQuote for Gmail |
ID | johachenlhehijdicggbfbkdkkeikilf |
URL Oficial | https://chromewebstore.google.com/detail/unquote-for-gmail/johachenlhehijdicggbfbkdkkeikilf |
Descripción | Unquote text of previous mails from the reply |
Tamaño del Archivo | 446 KB |
Cantidad de Instalaciones | 441 |
Versión Actual | 1.0.4 |
Última Actualización | 2023-10-25 |
Fecha de Publicación | 2018-11-05 |
Calificación | 3.00/5 Total de 9 Calificaciones |
Desarrollador | xcelancer |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/Vikasg7/UnQuote-for-Gmail |
URL de la Página de Ayuda | https://github.com/Vikasg7/UnQuote-for-Gmail/issues |
Idiomas Soportados | 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" } ] } |