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”。
擴展截圖
下載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/). 擴展基本資訊
| 名稱 | |
| ID | ciocgdpejlhegbegfjlfhjgjgbfcjkgb |
| 官方網址 | 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"
}
} | |