Command Palette
Speed up your productivity without having to learn keyboard shortcuts.
Was ist Command Palette?
Command Palette ist eine Chrome-Erweiterung, die von athal7 entwickelt wurde, und ihr Hauptmerkmal ist "Speed up your productivity without having to learn keyboard shortcuts.".
Erweiterungsscreenshots
Command Palette-Erweiterungs-CRX-Datei herunterladen
Laden Sie Command Palette-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cpnjadnfdpmdfplhnfjbgngcokgmkmpd |
| Offizielle URL | https://chromewebstore.google.com/detail/command-palette/cpnjadnfdpmdfplhnfjbgngcokgmkmpd |
| Beschreibung | Speed up your productivity without having to learn keyboard shortcuts. |
| Dateigröße | 105 KB |
| Installationsanzahl | 31 |
| Aktuelle Version | 0.3.0 |
| Letztes Update | 2020-07-25 |
| Veröffentlichungsdatum | 2020-07-24 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | athal7 |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
} | |