GMail Unread

Shows an 'Unread' button to filter emails by 'Unread' status.

GMail Unreadคืออะไร?

GMail Unread เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dillon Hafer และคุณลักษณะหลักของมันคือ "Shows an 'Unread' button to filter emails by 'Unread' status."

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

screenshot

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

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

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

                                            

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

ชื่อ GMail Unread GMail Unread
ID fnjpldipmbkkjobnhfhdngjljhlabieb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gmail-unread/fnjpldipmbkkjobnhfhdngjljhlabieb
คำอธิบาย Shows an 'Unread' button to filter emails by 'Unread' status.
ขนาดไฟล์ 52.41 KB
จำนวนการติดตั้ง 80
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2015-06-08
วันที่เผยแพร่ 2015-06-08
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Dillon Hafer
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dillonhafer/gmail-unread
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GMail Unread",
    "version": "1.0",
    "description": "Shows an 'Unread' button to filter emails by 'Unread' status.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "Show unread",
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent"
    ],
    "content_scripts": [
        {
            "js": [
                "unread.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}