Simple Hotkeys

A lightweight Chrome extension for enhancing existing Chrome hotkeys.

What is Simple Hotkeys?

Simple Hotkeys is a Chrome extension developed by liuyang1520, and its main feature is "A lightweight Chrome extension for enhancing existing Chrome hotkeys.".

Extension Screenshots

screenshot

Download Simple Hotkeys Extension CRX File

Download Simple Hotkeys extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        # 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                    

Extension Basic Information

Name Simple Hotkeys Simple Hotkeys
ID ciindhhkpajpgcpemjgpbbieiokifdeh
Official URL https://chromewebstore.google.com/detail/simple-hotkeys/ciindhhkpajpgcpemjgpbbieiokifdeh
Description A lightweight Chrome extension for enhancing existing Chrome hotkeys.
File Size 27.72 KB
Installation Count 23
Current Version 1.1.2
Last Updated 2023-08-24
Publish Date 2019-06-16
Rating 5.00/5 Total 1 Ratings
Developer liuyang1520
Email [email protected]
Payment Type free
Extension Website https://github.com/liuyang1520/simple-hotkeys
Help Page URL https://github.com/liuyang1520/simple-hotkeys
Supported Languages 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"
        }
    }
}