Gmail POP Sync

Fetch and synchronize your external POP accounts at the frequency you select.

Gmail POP Syncคืออะไร?

Gmail POP Sync เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://geotrack.email และคุณลักษณะหลักของมันคือ "Fetch and synchronize your external POP accounts at the frequency you select."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail POP Sync

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

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

                        Gmail POP Sync is a Chrome extension that enables you to modify the settings in Gmail, allowing your external POP accounts to fetch and synchronize faster than the default rate of once every hour.

With Gmail POP Sync, you can fetch from an unlimited number of POP3 email accounts with a frequency as low as one minute.

If you use Gmail to access emails from other POP3 accounts, the Gmail Fetcher will automatically check each POP3 account at the frequency you select.

You can also utilize the new 'Fetch Now' feature, which allows you to synchronize all your POP accounts with a single click.

We welcome feedback and comments. Please contact us at [email protected] if you encounter any issues.

-------------------------------------------------------
07/21/2023 - Version 2.0.1.7
- Bug fixes

07/19/2023 - Version 2.0.1.6
- Bug fixes

07/06/2023 - Version 2.0.1.5
- The majority of HTTP requests have been shifted to asynchronous operations for enhanced performance and an improved user experience

06/07/2023 - Version 2.0.1.4 - Major release
- New "Fetch Now" feature
- Improved loading time

05/23/2023 - Version 1.3.0.2
- Dual methods for detecting POP accounts

05/22/2023 - Version 1.3.0.1
- Bug fixes

05/20/2023 - Version 1.3.0.0
- Bug fixes

05/18/2023 - Version 1.2.2.0
- Improved detection of POP accounts
- Added debug logger

09/14/2021 - Version 1.2.1.9
- Bug fix on "at" value for fetching

08/20/2020 - Version 1.2.1.7
- Bug fixes
- Default frequency set to 5 minutes

08/11/2020 - Version 1.2.1.6
- Cross origin requests moved to background script

12/05/2018 - Version 1.0.8.1
- CSS fixes

12/04/2018 - Version 1.0.8.0 - Major release
- First release out of Beta
- Added support for multi-accounts inside the same Chrome browser
- Added timer at the bottom of Gmail's UI
- Added support for "Unlimited" users
- Bug fixes

11/22/2018 - Version Beta 0.9.6.8
- Bug Fixes

11/05/2018 - Version Beta 0.9.6.5
- First Beta release                    

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

ชื่อ Gmail POP Sync Gmail POP Sync
ID jcohkdgajeablpholinambjfpfkfjgdi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gmail-pop-sync/jcohkdgajeablpholinambjfpfkfjgdi
คำอธิบาย Fetch and synchronize your external POP accounts at the frequency you select.
ขนาดไฟล์ 429 KB
จำนวนการติดตั้ง 14,455
เวอร์ชันปัจจุบัน 2.0.1.7
อัปเดตครั้งล่าสุด 2023-07-22
วันที่เผยแพร่ 2018-12-05
คะแนน 3.65/5 รวมทั้งหมด 34 คะแนน
ผู้พัฒนา https://geotrack.email
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://geotrack.email
URL หน้าช่วยเหลือ https://geotrack.email/gmail-pop-sync.html
URL หน้านโยบายความเป็นส่วนตัว https://geotrack.email/privacy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_icon": "img\/icon16.png",
        "default_popup": "popup.html",
        "default_title": "Gmail POP Sync"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/content.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "css": [
                "css\/jquery.gritter.css",
                "css\/font-awesome.min.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "img\/*.png",
        "js\/gmail.js",
        "fonts\/*",
        "css\/*"
    ],
    "description": "Fetch and synchronize your external POP accounts at the frequency you select.",
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "manifest_version": 2,
    "name": "Gmail POP Sync",
    "permissions": [
        "https:\/\/mail.google.com\/*",
        "https:\/\/geotrack.email\/*",
        "https:\/\/beta.geotrack.email\/*",
        "storage"
    ],
    "short_name": "Gmail Fetcher",
    "version": "2.0.1.7",
    "background": {
        "scripts": [
            "js\/jquery-2.1.4.min.js",
            "js\/background.js"
        ]
    }
}