Keyboard shortcuts to close Chrome tabs

Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones

Was ist Keyboard shortcuts to close Chrome tabs?

Keyboard shortcuts to close Chrome tabs ist eine Chrome-Erweiterung, die von https://diophung.com entwickelt wurde, und ihr Hauptmerkmal ist "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones".

Erweiterungsscreenshots

screenshot
screenshot

Keyboard shortcuts to close Chrome tabs-Erweiterungs-CRX-Datei herunterladen

Laden Sie Keyboard shortcuts to close Chrome tabs-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

                        Ever wish Chrome has the hotkeys to close tabs to the right, or to the left, or pin current tab? 
This extension will let you do it, and there are more.

You can configure the hotkeys to:
- Close tabs to the left.
- Close tabs to the right.
- Close other tabs.
- Pin/unpin a tab.

Source code available at : https://github.com/diophung/close-chrome-tabs
Please provide your feedback to Twitter: @diophung or email : [email protected].                    

Grundlegende Informationen zur Erweiterung

Name Keyboard shortcuts to close Chrome tabs Keyboard shortcuts to close Chrome tabs
ID fipfgiejfpcdacpjepkohdlnjonchnal
Offizielle URL https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/fipfgiejfpcdacpjepkohdlnjonchnal
Beschreibung Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones
Dateigröße 293 KB
Installationsanzahl 4,928
Aktuelle Version 0.3.0
Letztes Update 2022-02-07
Veröffentlichungsdatum 2018-06-24
Bewertung 4.64/5 Insgesamt 25 Bewertungen
Entwickler https://diophung.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/diophung/close-chrome-tabs
Hilfeseite URL https://diophung.com/chrome-tab-shortcut-privacy-policy/
URL der Datenschutzrichtlinien-Seite https://github.com/diophung/close-chrome-tabs/wiki/Privacy-Policy
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "close-other-tabs-dp": {
            "description": "Close other tabs",
            "suggested_key": {
                "default": "Alt+Shift+W"
            }
        },
        "close-left-tabs-dp": {
            "description": "Close tabs to the left",
            "suggested_key": {
                "default": "Alt+Shift+L"
            }
        },
        "close-right-tabs-dp": {
            "description": "Close tabs to the right",
            "suggested_key": {
                "default": "Alt+Shift+R"
            }
        },
        "toggle-pin-dp": {
            "description": "Pin\/unpin Tab",
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "description": "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left\/right\/other tabs or toggle pinned ones",
    "icons": {
        "128": "images\/tabs_128.png",
        "48": "images\/tabs_48.png"
    },
    "manifest_version": 2,
    "name": "Keyboard shortcuts to close Chrome tabs",
    "short_name": "Shortcuts to close tabs",
    "options_page": "options.html",
    "permissions": [],
    "version": "0.3.0"
}