Simple Hotkeys
A lightweight Chrome extension for enhancing existing Chrome hotkeys.
Qu'est-ce que Simple Hotkeys ?
Simple Hotkeys est une extension Chrome développée par liuyang1520, et sa fonction principale est "A lightweight Chrome extension for enhancing existing Chrome hotkeys.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Simple Hotkeys
Téléchargez les fichiers d'extension Simple Hotkeys au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
# Simple Hotkeys A lightweight Chrome extension for enhancing existing Chrome hotkeys. While there are a plenty of extensions giving users a variety of configurations for shortcuts/hotkeys, the ideas behind this application are - lightweight - preconfigured - intuitively - simple ## Features - Search text in new tab and switch to it: `Ctrl/Command(⌘) + Shift(⇧) + k` - Search text in new tab in background: `Ctrl/Command(⌘) + Shift(⇧) + l` - Pin/Unpin current tab: `Ctrl/Command(⌘) + Shift(⇧) + p` - Detach current tab to a new window: no default - Navigate to last active tab: `Ctrl/Command(⌘) + Shift(⇧) + e` `Command(⌘)` is replaced with `Ctrl` key for Windows computers. ## Issues Please feel free to contribute directly or create issues for any bugs and feature suggestions. ## Source Code https://github.com/liuyang1520/simple-hotkeys
Informations de Base sur l'Extension
Nom | Simple Hotkeys |
ID | ciindhhkpajpgcpemjgpbbieiokifdeh |
URL Officiel | https://chromewebstore.google.com/detail/simple-hotkeys/ciindhhkpajpgcpemjgpbbieiokifdeh |
Description | A lightweight Chrome extension for enhancing existing Chrome hotkeys. |
Taille du Fichier | 27.72 KB |
Nombre d'Installations | 23 |
Version Actuelle | 1.1.2 |
Dernière Mise à Jour | 2023-08-24 |
Date de Publication | 2019-06-16 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | liuyang1520 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/liuyang1520/simple-hotkeys |
URL de la Page d'Aide | https://github.com/liuyang1520/simple-hotkeys |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.1.2", "manifest_version": 3, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "service_worker": "scripts\/background.js" }, "permissions": [ "scripting", "storage", "background" ], "host_permissions": [ "*:\/\/*\/*" ], "commands": { "search-in-new-active-tab": { "description": "Search and jump", "suggested_key": { "default": "Ctrl+Shift+K", "mac": "Command+Shift+K" } }, "search-in-new-background-tab": { "description": "Search in background", "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" } }, "pin-unpin-tab": { "description": "Pin \/ unpin", "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Command+Shift+P" } }, "navigate-to-last-active-tab": { "description": "Navigate to last active tab", "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" } }, "extract-tab-to-new-window": { "description": "Extract to window" } }, "action": { "default_popup": "popup.html", "default_title": "Simple-Hotkeys", "default_icon": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" } } } |