Command Palette
A command palette to navigate in Google Chrome faster.
什麼是Command Palette?
Command Palette是由Chin Leung開發的Chrome擴展程式,該擴展的主要功能是“A command palette to navigate in Google Chrome faster.”。
擴展截圖
下載Command Palette擴展crx文件
下載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 |
ID | lfmfhlofoaleegdogpmknfbibciflfek |
官方網址 | 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" ] } |