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/).
拡張機能の基本情報
名前 | 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" } } |