Command Palette
Speed up your productivity without having to learn keyboard shortcuts.
什么是Command Palette?
Command Palette是由athal7开发的Chrome扩展程序,该扩展的主要功能是“Speed up your productivity without having to learn keyboard shortcuts.”。
扩展截图
下载Command Palette扩展crx文件
下载Command Palette扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Want to improve your productivity, but don't want to learn keyboard shortcuts? With Command Palette, you can become a power user instantly, with a single command.
Supported Websites:
- Gmail
Vote for more sites here: https://github.com/sponsors/athal7 扩展基本信息
| 名称 | |
| ID | cpnjadnfdpmdfplhnfjbgngcokgmkmpd |
| 官方URL | https://chromewebstore.google.com/detail/command-palette/cpnjadnfdpmdfplhnfjbgngcokgmkmpd |
| 简介 | Speed up your productivity without having to learn keyboard shortcuts. |
| 文件大小 | 105 KB |
| 安装次数 | 31 |
| 当前版本 | 0.3.0 |
| 更新时间 | 2020-07-25 |
| 上架时间 | 2020-07-24 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | athal7 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Command Palette",
"description": "Speed up your productivity without having to learn keyboard shortcuts.",
"version": "0.3.0",
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content-script.js"
]
}
],
"permissions": [
"storage"
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"browser_action": {
"default_icon": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"default_popup": "options.html"
},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"manifest_version": 2
} | |