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是由[email protected]开发的Chrome扩展程序,该扩展的主要功能是“Press Alt+A to expand or collapse a Gmail thread”。

扩展截图

screenshot

下载Gmail 'Expand all' keyboard shortcut扩展crx文件

下载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"
    }
}