Gmail 'Expand all' keyboard shortcut

Press Alt+A to expand or collapse a Gmail thread

Gmail 'Expand all' keyboard shortcut là gì?

Gmail 'Expand all' keyboard shortcut là một tiện ích mở rộng Chrome được phát triển bởi [email protected], và tính năng chính của nó là "Press Alt+A to expand or collapse a Gmail thread".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gmail 'Expand all' keyboard shortcut

Tải xuống các tệp mở rộng Gmail 'Expand all' keyboard shortcut dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gmail 'Expand all' keyboard shortcut Gmail 'Expand all' keyboard shortcut
ID ciocgdpejlhegbegfjlfhjgjgbfcjkgb
URL Chính Thức https://chromewebstore.google.com/detail/gmail-expand-all-keyboard/ciocgdpejlhegbegfjlfhjgjgbfcjkgb
Mô tả Press Alt+A to expand or collapse a Gmail thread
Kích Thước Tệp 8.66 KB
Số Lần Cài Đặt 1,803
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2014-09-07
Ngày Phát Hành 2014-09-07
Đánh Giá 4.27/5 Tổng số 11 Đánh Giá
Nhà Phát Triển [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}