Simple Hotkeys

A lightweight Chrome extension for enhancing existing Chrome hotkeys.

Simple Hotkeys क्या है?

Simple Hotkeys liuyang1520 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A lightweight Chrome extension for enhancing existing Chrome hotkeys."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Simple Hotkeys एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        # 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                    

एक्सटेंशन की मूल जानकारी

नाम Simple Hotkeys Simple Hotkeys
ID ciindhhkpajpgcpemjgpbbieiokifdeh
आधिकारिक URL https://chromewebstore.google.com/detail/simple-hotkeys/ciindhhkpajpgcpemjgpbbieiokifdeh
विवरण A lightweight Chrome extension for enhancing existing Chrome hotkeys.
फ़ाइल का आकार 27.72 KB
स्थापना संख्या 23
वर्तमान संस्करण 1.1.2
अंतिम अपडेट 2023-08-24
प्रकाशन तिथि 2019-06-16
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर liuyang1520
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/liuyang1520/simple-hotkeys
सहायता पृष्ठ URL https://github.com/liuyang1520/simple-hotkeys
समर्थित भाषाएँ 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"
        }
    }
}