Gmail++

Improves the user experience of Gmail

Gmail++คืออะไร?

Gmail++ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Michael Pfaff และคุณลักษณะหลักของมันคือ "Improves the user experience of Gmail"

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

screenshot

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

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

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

                        Improves the user experience of Gmail.

Features:
- Modifies the refresh button (the one above the threads list, not beside the address bar) to also check external POP3 accounts.
- Checks external POP3 accounts on page load.
- Checks external POP3 accounts at a configurable interval.                    

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

ชื่อ Gmail++ Gmail++
ID jcbfnofllipbepnolhgcdloichjbcena
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gmail++/jcbfnofllipbepnolhgcdloichjbcena
คำอธิบาย Improves the user experience of Gmail
ขนาดไฟล์ 9.16 KB
จำนวนการติดตั้ง 182
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2022-10-12
วันที่เผยแพร่ 2022-10-09
ผู้พัฒนา Michael Pfaff
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gmail++",
    "version": "1.1.0",
    "description": "Improves the user experience of Gmail",
    "icons": {
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/mail.google.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "lib.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}