Gmail 'Expand all' keyboard shortcut

Press Alt+A to expand or collapse a Gmail thread

Gmail 'Expand all' keyboard shortcutคืออะไร?

Gmail 'Expand all' keyboard shortcut เป็นส่วนขยายของ Chrome ที่พัฒนาโดย [email protected] และคุณลักษณะหลักของมันคือ "Press Alt+A to expand or collapse a Gmail thread"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail 'Expand all' keyboard shortcut

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

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

                        Press Alt+A to expand or collapse a Gmail conversation thread.

To change the keyboard shortcut click "Keyboard shortcuts" on the extensions page (chrome://extensions/).                    

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

ชื่อ Gmail 'Expand all' keyboard shortcut Gmail 'Expand all' keyboard shortcut
ID ciocgdpejlhegbegfjlfhjgjgbfcjkgb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gmail-expand-all-keyboard/ciocgdpejlhegbegfjlfhjgjgbfcjkgb
คำอธิบาย Press Alt+A to expand or collapse a Gmail thread
ขนาดไฟล์ 8.66 KB
จำนวนการติดตั้ง 1,803
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2014-09-07
วันที่เผยแพร่ 2014-09-07
คะแนน 4.27/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail 'Expand all' keyboard shortcut",
    "description": "Press Alt+A to expand or collapse a Gmail thread",
    "version": "1.1",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggle-expand-all": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Send a 'toggle-expand-all' event to the extension"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}