Keyboard Shortcuts for Gmail
Additional useful keyboard shortcuts for Gmail
Keyboard Shortcuts for Gmail란 무엇입니까?
Keyboard Shortcuts for Gmail은(는) justusegmail에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Additional useful keyboard shortcuts for Gmail"입니다.
확장 프로그램 스크린샷
Keyboard Shortcuts for Gmail 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
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\/*" ] } |