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 |
| 官方網址 | 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
} | |