Keyboard Shortcuts

Set custom keyboard shortcuts for Chrome: View extension options, or browse to chrome://extensions/shortcuts to set.

Keyboard Shortcutsคืออะไร?

Keyboard Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joe Pestro และคุณลักษณะหลักของมันคือ "Set custom keyboard shortcuts for Chrome: View extension options, or browse to chrome://extensions/shortcuts to set."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Keyboard Shortcuts

ดาวน์โหลดไฟล์ส่วนขยาย Keyboard Shortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds the ability to set 25 different custom keyboard shortcuts for Chrome. Without this extension, Chrome doesn't have the ability to change or override any default keyboard shortcuts.

By design, this extension does not require any additional Chrome permissions at all. Everything is performed locally in Chrome, so it does not need access to any sites or data.

All 25 keyboard shortcut settings are optional and can be changed at any time.

All keyboard shortcuts can be changed at chrome://extensions/shortcuts. You can navigate there via your address bar, or by selecting options from the Keyboard Shortcuts extension.




List of keyboard shortcuts that can be set:

Select previous tab
Select next tab
Move current tab left
Move current tab right
Open Chrome Bookmarks (chrome://bookmarks)
Open Chrome Downloads (chrome://downloads)
Open Extensions (chrome://extensions)
Open Extension Shortcuts (chrome://extensions/shortcuts)
Open Chrome Flags (chrome://flags)
Open Chrome Help (chrome://help)
Open Chrome History (chrome://history)
Open Chrome Settings (chrome://settings)
Close current tab
New tab
Unload tab from memory
Duplicate current tab
Go back to the previous page
Go forward to the next page
Move current tab to first
Move current tab to last
Mute / Unmute current tab
Pin / Unpin current tab
Reload tab
New window
New incognito window




Icon design:

Extension icon made by Freepik from www.flaticon.com                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Keyboard Shortcuts Keyboard Shortcuts
ID lplcmnhgijkkmflbmhabnccgelffpnog
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/keyboard-shortcuts/lplcmnhgijkkmflbmhabnccgelffpnog
คำอธิบาย Set custom keyboard shortcuts for Chrome: View extension options, or browse to chrome://extensions/shortcuts to set.
ขนาดไฟล์ 33.04 KB
จำนวนการติดตั้ง 20,000
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2024-03-04
วันที่เผยแพร่ 2019-02-16
คะแนน 4.43/5 รวมทั้งหมด 75 คะแนน
ผู้พัฒนา Joe Pestro
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyboard Shortcuts",
    "short_name": "Keyboard Shortcuts",
    "author": "Joe Pestro",
    "version": "1.1",
    "manifest_version": 3,
    "description": "Set custom keyboard shortcuts for Chrome: View extension options, or browse to chrome:\/\/extensions\/shortcuts to set.",
    "icons": {
        "128": "keyboard128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "01-tab-previous": {
            "description": "Select previous tab"
        },
        "02-tab-next": {
            "description": "Select next tab"
        },
        "03-tab-move-to-previous": {
            "description": "Move current tab left"
        },
        "04-tab-move-to-next": {
            "description": "Move current tab right"
        },
        "tab-move-to-first": {
            "description": "Move current tab to first"
        },
        "tab-move-to-last": {
            "description": "Move current tab to last"
        },
        "tab-discard": {
            "description": "Unload tab from memory"
        },
        "tab-reload": {
            "description": "Reload tab"
        },
        "tab-duplicate": {
            "description": "Duplicate current tab"
        },
        "tab-pin": {
            "description": "Pin \/ Unpin current tab"
        },
        "tab-mute": {
            "description": "Mute \/ Unmute current tab"
        },
        "tab-close": {
            "description": "Close current tab"
        },
        "tab-create-new": {
            "description": "New tab"
        },
        "tab-go-back": {
            "description": "Go back to the previous page"
        },
        "tab-go-forward": {
            "description": "Go forward to the next page"
        },
        "window-new": {
            "description": "New window"
        },
        "window-new-incognito": {
            "description": "New incognito window"
        },
        "open-extensions": {
            "description": "Open Extensions (chrome:\/\/extensions)"
        },
        "open-extensions-shortcuts": {
            "description": "Open Extension Shortcuts (chrome:\/\/extensions\/shortcuts)"
        },
        "open-downloads": {
            "description": "Open Chrome Downloads (chrome:\/\/downloads)"
        },
        "open-settings": {
            "description": "Open Chrome Settings (chrome:\/\/settings)"
        },
        "open-history": {
            "description": "Open Chrome History (chrome:\/\/history)"
        },
        "open-bookmarks": {
            "description": "Open Chrome Bookmarks (chrome:\/\/bookmarks)"
        },
        "open-help": {
            "description": "Open Chrome Help (chrome:\/\/help)"
        },
        "open-flags": {
            "description": "Open Chrome Flags (chrome:\/\/flags)"
        }
    }
}