Learn the shortcuts

Learn keyboard shortcuts painlessly for Gmail, Trello, Github & Google Calendar

Learn the shortcuts란 무엇입니까?

Learn the shortcuts은(는) Matthieu G.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Learn keyboard shortcuts painlessly for Gmail, Trello, Github & Google Calendar"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Learn the shortcuts 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Did you know you can use keyboard shortcuts to do almost anything on some websites?
Learn them with this extension and work faster!
For now, it support Gmail, Trello, Github and Google Agenda

Features:
- Press and hold alt to see all the available shortcuts
- When you hover over a button, you'll see the keyboard shortcut you can use

Configuration for Gmail and Google Agenda:
In order to use keyboard shortcuts in Gmail or in Google Agenda, they have to be enabled. If that's not already the case for you, go to Settings > General > Keyboard shortcuts and check the corresponding option                    

확장 프로그램 기본 정보

이름 Learn the shortcuts Learn the shortcuts
ID glbfdjadjnpcloonbhhjahddhcclimld
공식 URL https://chromewebstore.google.com/detail/learn-the-shortcuts/glbfdjadjnpcloonbhhjahddhcclimld
설명 Learn keyboard shortcuts painlessly for Gmail, Trello, Github & Google Calendar
파일 크기 57.41 KB
설치 횟수 73
현재 버전 0.6.2
최근 업데이트 2020-04-01
출시 날짜 2020-03-26
평점 5.00/5 총 2 개의 평점
개발자 Matthieu G.
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/matthieu60/learn-the-shortcuts
도움말 페이지 URL https://github.com/matthieu60/learn-the-shortcuts
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Learn the shortcuts",
    "version": "0.6.2",
    "description": "Learn keyboard shortcuts painlessly for Gmail, Trello, Github & Google Calendar",
    "short_name": "LTS",
    "icons": {
        "16": "icons\/logo-16.png",
        "48": "icons\/logo-48.png",
        "128": "icons\/logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "shortcuts.js",
                "gmail.js"
            ]
        },
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "shortcuts.js",
                "github.js"
            ]
        },
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "shortcuts.js",
                "trello.js"
            ]
        },
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "shortcuts.js",
                "google-calendar.js"
            ]
        }
    ],
    "permissions": [],
    "web_accessible_resources": [
        "shortcuts.js",
        "gmail.js",
        "github.js",
        "trello.js",
        "google-calendar.js"
    ]
}