Simple Hotkeys

A lightweight Chrome extension for enhancing existing Chrome hotkeys.

¿Qué es Simple Hotkeys?

Simple Hotkeys es una extensión de Chrome desarrollada por liuyang1520, y su función principal es "A lightweight Chrome extension for enhancing existing Chrome hotkeys.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Simple Hotkeys

Descarga archivos de extensión Simple Hotkeys en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        # 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                    

Información Básica de la Extensión

Nombre Simple Hotkeys Simple Hotkeys
ID ciindhhkpajpgcpemjgpbbieiokifdeh
URL Oficial https://chromewebstore.google.com/detail/simple-hotkeys/ciindhhkpajpgcpemjgpbbieiokifdeh
Descripción A lightweight Chrome extension for enhancing existing Chrome hotkeys.
Tamaño del Archivo 27.72 KB
Cantidad de Instalaciones 23
Versión Actual 1.1.2
Última Actualización 2023-08-24
Fecha de Publicación 2019-06-16
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador liuyang1520
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/liuyang1520/simple-hotkeys
URL de la Página de Ayuda https://github.com/liuyang1520/simple-hotkeys
Idiomas Soportados 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"
        }
    }
}