KeyboardShortcuts

Add Keyboard Shortcuts to Web Applications

KeyboardShortcuts là gì?

KeyboardShortcuts là một tiện ích mở rộng Chrome được phát triển bởi farleigh, và tính năng chính của nó là "Add Keyboard Shortcuts to Web Applications".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng KeyboardShortcuts

Tải xuống các tệp mở rộng KeyboardShortcuts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Add custom keyboard shortcuts (hotkeys) to specific web applications using a small flexible language. Currently supports commands including copying content into the clipboard, clicking, touching, opening new pages, focusing on elements, hiding elements on the page and setting content.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên KeyboardShortcuts KeyboardShortcuts
ID oiigclempgcopbccpbibeembdmbenpce
URL Chính Thức https://chrome.google.com/webstore/detail/keyboardshortcuts/oiigclempgcopbccpbibeembdmbenpce
Mô tả Add Keyboard Shortcuts to Web Applications
Kích Thước Tệp 498 KB
Số Lần Cài Đặt 76
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2016-04-24
Ngày Phát Hành 2016-04-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển farleigh
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/farleigh/keyboardshortcuts/wiki
URL Trang Trợ Giúp https://github.com/farleigh/keyboardshortcuts/wiki
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "KeyboardShortcuts",
    "version": "1.0.0",
    "description": "Add Keyboard Shortcuts to Web Applications",
    "homepage_url": "https:\/\/github.com\/farleigh\/keyboardshortcuts\/wiki",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/3p\/almond-min.js",
                "js\/3p\/jquery.js",
                "js\/3p\/mousetrap.js",
                "js\/keyboard-shortcuts-bundle.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "clipboardWrite",
        "downloads"
    ],
    "browser_action": {
        "default_icon": "images\/favicon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "images\/favicon.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}