UnQuote for Gmail

Unquote text of previous mails from the reply

O que é UnQuote for Gmail?

UnQuote for Gmail é uma extensão do Chrome desenvolvida por xcelancer, e sua principal característica é "Unquote text of previous mails from the reply".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão UnQuote for Gmail

Baixe arquivos de extensão UnQuote for Gmail no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome UnQuote for Gmail UnQuote for Gmail
ID johachenlhehijdicggbfbkdkkeikilf
URL Oficial https://chromewebstore.google.com/detail/unquote-for-gmail/johachenlhehijdicggbfbkdkkeikilf
Descrição Unquote text of previous mails from the reply
Tamanho do Arquivo 446 KB
Contagem de Instalações 441
Versão Atual 1.0.4
Última Atualização 2023-10-25
Data de Publicação 2018-11-05
Classificação 3.00/5 Total de 9 Avaliações
Desenvolvedor xcelancer
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Vikasg7/UnQuote-for-Gmail
URL da Página de Ajuda https://github.com/Vikasg7/UnQuote-for-Gmail/issues
Idiomas Suportados 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"
        }
    ]
}