Keyboard Shortcuts for Gmail

Additional useful keyboard shortcuts for Gmail

Keyboard Shortcuts for Gmailคืออะไร?

Keyboard Shortcuts for Gmail เป็นส่วนขยายของ Chrome ที่พัฒนาโดย justusegmail และคุณลักษณะหลักของมันคือ "Additional useful keyboard shortcuts for Gmail"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension adds additional, useful shortcuts to Gmail:

Inbox view
* Use up and down arrows to move the blue cursor when in inbox view
* Use e or # to archive or delete any message in the inbox view, without having to select it first
* Use h to snooze the current message in the inbox view 
* Use shift + up arrow or shift + down arrow to select multiple messages in inbox view
* Use ESC to deselect messages in inbox view
* Use ENTER to select the current message (wherever the blue cursor appears) in inbox view

* Use ESC to go back to inbox view, when viewing a message
* Use / to make the searchbar active so you can start typing a search

This extension does NOT read any message data or operate on any other websites. It only triggers buttons on the Gmail page.                    

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

ชื่อ Keyboard Shortcuts for Gmail Keyboard Shortcuts for Gmail
ID njodmhlcodbejbbhjeegcpgnmklllgld
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/keyboard-shortcuts-for-gm/njodmhlcodbejbbhjeegcpgnmklllgld
คำอธิบาย Additional useful keyboard shortcuts for Gmail
ขนาดไฟล์ 45 KB
จำนวนการติดตั้ง 43
เวอร์ชันปัจจุบัน 1.11
อัปเดตครั้งล่าสุด 2020-06-30
วันที่เผยแพร่ 2020-06-30
คะแนน 2.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา justusegmail
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Keyboard Shortcuts for Gmail",
    "description": "Additional useful keyboard shortcuts for Gmail",
    "version": "1.11",
    "browser_action": {
        "default_icon": "icon-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "*:\/\/mail.google.com\/*"
    ]
}