Command Palette

A command palette to navigate in Google Chrome faster.

Command Paletteคืออะไร?

Command Palette เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chin Leung และคุณลักษณะหลักของมันคือ "A command palette to navigate in Google Chrome faster."

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

screenshot
screenshot

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

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

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

                        An extension that allows you to quickly switch between active tabs, open new tabs, execute commands and more.

Open the command palette by pressing CTRL/COMMAND + SHIFT + K at anytime. The shortcut is editable in the Chrome's shortcuts settings (chrome://extensions/shortcuts).                    

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

ชื่อ Command Palette Command Palette
ID lfmfhlofoaleegdogpmknfbibciflfek
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/command-palette/lfmfhlofoaleegdogpmknfbibciflfek
คำอธิบาย A command palette to navigate in Google Chrome faster.
ขนาดไฟล์ 86.21 KB
จำนวนการติดตั้ง 194
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2022-08-09
วันที่เผยแพร่ 2022-03-22
คะแนน 4.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Chin Leung
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/chinleung/chrome-command-palette-issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Command Palette",
    "description": "A command palette to navigate in Google Chrome faster.",
    "version": "1.0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "toggle-palette": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "description": "Toggle the command palette."
        }
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "search",
        "tabs"
    ]
}