Gmail POP3 Auto Refresh

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

Co to jest Gmail POP3 Auto Refresh?

Gmail POP3 Auto Refresh to rozszerzenie Chrome opracowane przez https://evanjuge.fr, a jego główną funkcją jest „Refresh unlimited POP3 email accounts of Gmail with a frequency of one minute for free.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Gmail POP3 Auto Refresh

Pobierz pliki rozszerzeń Gmail POP3 Auto Refresh w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Gmail POP3 Auto Refresh Gmail POP3 Auto Refresh
ID dcgondciahimhomfomnnpocjflglcppa
Oficjalny URL https://chromewebstore.google.com/detail/gmail-pop3-auto-refresh/dcgondciahimhomfomnnpocjflglcppa
Opis Refresh unlimited POP3 email accounts of Gmail with a frequency of one minute for free.
Rozmiar pliku 366 KB
Liczba instalacji 10,097
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2022-06-15
Data Publikacji 2021-10-23
Ocena 4.25/5 Łącznie 36 Oceny
Deweloper https://evanjuge.fr
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/Ayce45/gmail-pop3-auto-refresh/issues
Obsługiwane Języki 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"
    ]
}