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). 扩展基本信息
| 名称 | |
| 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"
]
} | |