Gmail POP3 Refresh Button

Refreshes all POP3 accounts when the POP3 button is clicked

ما هو Gmail POP3 Refresh Button؟

Gmail POP3 Refresh Button هو إضافة Chrome تم تطويرها بواسطة strangemouse12345، والميزة الرئيسية لها هي "Refreshes all POP3 accounts when the POP3 button is clicked".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Gmail POP3 Refresh Button

قم بتنزيل ملفات الامتداد Gmail POP3 Refresh Button بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        If you notice any bugs or have suggestions on how to improve this extension, feel free to contact me either by email or in the support tab!

This small Chrome-Extension adds a button/shortcut on the Gmail Website for easy and fast refreshing of all POP3 Email-accounts liked to your Gmail account.

Before, you had to go into the settings and click the "Check mail now" link manually but this extension now does all this automatically.

IMPORTANT INSTRUCTIONS FOR USING THE EXTENSION

To use it properly first navigate to mail.google.com/#settings/accounts and scroll down to "Check email from other accounts:". Here you will see the Email-accounts that are linked to your Gmail account together with a Button "Check mail now" (this may vary depending on your language). Copy the link text ("Check mail now" in English), click on the extension icon in the upper right corner, Click on the "Gmail POP3" extension, paste it into the "Your language" field, and press "OK". If you now navigate to mail.google.com you should see a gray Button with the Text "POP3" in the upper left corner, next to the Gmail logo. Pressing this, now should automatically go to the settings, click the required link and navigate back to the inbox page (This does not work reliably 100% of the time and it might get stuck in the settings page. Is this the case, just press the "POP3" button one more time and it should work).

This Extension is heavily based on the "Easily refresh all your POP3 E-Mail accounts linked to Gmail" bookmarklet by David Mohr (https://david-mohr.com/blog/bookmarklet-refresh-pop3-accounts-gmail) so all credit goes to him for the internal workings.                    

معلومات أساسية عن التمديد

الاسم Gmail POP3 Refresh Button Gmail POP3 Refresh Button
ID conjkhfodbbomjjhfanalejcidfkabpa
عنوان URL الرسمي https://chromewebstore.google.com/detail/gmail-pop3-refresh-button/conjkhfodbbomjjhfanalejcidfkabpa
الوصف Refreshes all POP3 accounts when the POP3 button is clicked
حجم الملف 21.82 KB
عدد التثبيتات 667
النسخة الحالية 0.1.4
آخر تحديث 2023-09-28
تاريخ النشر 2022-10-12
تقييم 4.33/5 مجموع تقييمات 9
المطور strangemouse12345
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail POP3 Refresh Button",
    "description": "Refreshes all POP3 accounts when the POP3 button is clicked",
    "version": "0.1.4",
    "author": "StrangeMouse",
    "manifest_version": 3,
    "icons": {
        "16": "\/images\/gmail16.png",
        "32": "\/images\/gmail32.png",
        "48": "\/images\/gmail48.png",
        "128": "\/images\/gmail128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "\/images\/gmail16.png",
            "32": "\/images\/gmail32.png",
            "48": "\/images\/gmail48.png",
            "128": "\/images\/gmail128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}