Gmail POP3 Auto Refresh

Refresh unlimited POP3 email accounts of Gmail with a frequency of one minute for free.

O que é Gmail POP3 Auto Refresh?

Gmail POP3 Auto Refresh é uma extensão do Chrome desenvolvida por https://evanjuge.fr, e sua principal característica é "Refresh unlimited POP3 email accounts of Gmail with a frequency of one minute for free.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Gmail POP3 Auto Refresh

Baixe arquivos de extensão Gmail POP3 Auto Refresh 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

                        This extension will automate the refresh of emails from the third-party server to your Gmail every minute. There is no need to do anything else.
If you are using Gmail POP3 emails to retrieve emails from other email accounts, you may have noticed that it sometimes checks for new emails very slowly.

With Gmail POP3 auto-refresh, you can refresh an unlimited number of POP3 email accounts at a rate of one minute for free.

Click on the extension, it will open Gmail on the right page and automatically refresh POP3 emails. Just leave this page open and open a new one to view your emails which will finally be up to date!

Feedback and comments are welcome. Feel free to contact me at [email protected] if you have any problems.
I will see your email very soon because I use my own extension!                    

Informações Básicas da Extensão

Nome Gmail POP3 Auto Refresh Gmail POP3 Auto Refresh
ID dcgondciahimhomfomnnpocjflglcppa
URL Oficial https://chromewebstore.google.com/detail/gmail-pop3-auto-refresh/dcgondciahimhomfomnnpocjflglcppa
Descrição Refresh unlimited POP3 email accounts of Gmail with a frequency of one minute for free.
Tamanho do Arquivo 366 KB
Contagem de Instalações 10,097
Versão Atual 1.4
Última Atualização 2022-06-15
Data de Publicação 2021-10-23
Classificação 4.25/5 Total de 36 Avaliações
Desenvolvedor https://evanjuge.fr
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/Ayce45/gmail-pop3-auto-refresh/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail POP3 Auto Refresh",
    "description": "Refresh unlimited POP3 email accounts of Gmail with a frequency of one minute for free.",
    "version": "1.4",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.min.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Gmail POP3 Auto Refresh",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "contentscript.min.js"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "script.min.js"
    ]
}