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文件

下载Learn the shortcuts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}