1 Click Filters for Gmail

Easily add new filter rules in Gmail to clean up your inbox.

O que é 1 Click Filters for Gmail?

1 Click Filters for Gmail é uma extensão do Chrome desenvolvida por leofree, e sua principal característica é "Easily add new filter rules in Gmail to clean up your inbox.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão 1 Click Filters for Gmail

Baixe arquivos de extensão 1 Click Filters 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

                        Simple 1 Click extension to add selected conversations to a filter.

📩😰 Too many newsletters polluting your inbox?
1. Select the conversations
2. Click on the extension 👉 it will add them all to a filter
3. Choose a label for the conversations and click save
✨

That's it! 
You can now finally relax with a clean inbox. 😌

You still receive the emails, they just don't land in your inbox anymore. 
Find them under the label you selected or by looking at all messages on the left.                    

Informações Básicas da Extensão

Nome 1 Click Filters for Gmail 1 Click Filters for Gmail
ID pdokhkklnjljpcdopemmigpceokpdild
URL Oficial https://chromewebstore.google.com/detail/1-click-filters-for-gmail/pdokhkklnjljpcdopemmigpceokpdild
Descrição Easily add new filter rules in Gmail to clean up your inbox.
Tamanho do Arquivo 17.43 KB
Contagem de Instalações 30
Versão Atual 1.0.2
Última Atualização 2023-10-05
Data de Publicação 2023-06-27
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor leofree
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "1 Click Filters for Gmail",
    "version": "1.0.2",
    "description": "Easily add new filter rules in Gmail to clean up your inbox.",
    "permissions": [
        "activeTab"
    ],
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "48": "postbox_48.png",
        "128": "postbox_128.png"
    }
}