Gmail POP3 Auto Refresh

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

Gmail POP3 Auto Refreshคืออะไร?

Gmail POP3 Auto Refresh เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://evanjuge.fr และคุณลักษณะหลักของมันคือ "Refresh unlimited POP3 email accounts of Gmail with a frequency of one minute for free."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail POP3 Auto Refresh

ดาวน์โหลดไฟล์ส่วนขยาย Gmail POP3 Auto Refresh ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gmail POP3 Auto Refresh Gmail POP3 Auto Refresh
ID dcgondciahimhomfomnnpocjflglcppa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gmail-pop3-auto-refresh/dcgondciahimhomfomnnpocjflglcppa
คำอธิบาย Refresh unlimited POP3 email accounts of Gmail with a frequency of one minute for free.
ขนาดไฟล์ 366 KB
จำนวนการติดตั้ง 10,097
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2022-06-15
วันที่เผยแพร่ 2021-10-23
คะแนน 4.25/5 รวมทั้งหมด 36 คะแนน
ผู้พัฒนา https://evanjuge.fr
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/Ayce45/gmail-pop3-auto-refresh/issues
ภาษาที่รองรับ 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"
    ]
}