Tab Shortcuts by PaganCode QWERTY

Adds keyboard shortcuts to Close other / right / left tabs and Duplicate tab.

Τι είναι το Tab Shortcuts by PaganCode QWERTY;

Το Tab Shortcuts by PaganCode QWERTY είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον PaganCode, και η κύρια λειτουργία του είναι "Adds keyboard shortcuts to Close other / right / left tabs and Duplicate tab.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Tab Shortcuts by PaganCode QWERTY

Λήψη αρχείων επέκτασης Tab Shortcuts by PaganCode QWERTY σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        NOTE: Look up the QWERTZ (BLUE) version of the extension in the Web Store if you’re using a Czech (or other QWERTZ) keyboard.

Tired of right-clicking on the active tab million times a day? Make your life easier by just pressing the shortcuts:

- Press Ctrl+Q to close other tabs.
- Press Ctrl+Z to close tabs to the right.
- Press Ctrl+Shift+Z to close tabs to the left.
- Press Ctrl+Space to duplicate tab.

These don’t collide with any other Chrome default shortcuts while providing convenience at the same time. The extension requires no special permissions.
Unlike some other solutions available in the Web Store that may feel sluggish at times these will always execute the action and never fail (regardless of whether the content of the active page has already been fully loaded or not).
You might have noticed that the Web Store has removed a couple of extensions that were dealing with shortcuts because they haven’t been updated to manifest version 2.
I was wondering how it is possible that such basic actions are not supported by keyboard shortcuts and just couldn’t find any simple, lightweight, clean and reliable solution that would have covered my needs. There are a few workarounds but not quite what I could be happy about. Either they’re not responsive at all times or the chosen keys are not comfortable.
Eventually, I concluded that enough is enough and decided to do it myself. This is possibly one of the simplest and smallest extensions being less than 4 KB in weight, (excluding icons). Just a few lines of code but what a relief!
Frankly, I did this just for myself. But it won’t do any harm if I share it with the world. And if you care about productivity you might find it handy. Enjoy.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Tab Shortcuts by PaganCode QWERTY Tab Shortcuts by PaganCode QWERTY
ID aljcobgfmmehdhflljfjmjbkiinlifoh
Επίσημο URL https://chromewebstore.google.com/detail/tab-shortcuts-by-pagancod/aljcobgfmmehdhflljfjmjbkiinlifoh
Περιγραφή Adds keyboard shortcuts to Close other / right / left tabs and Duplicate tab.
Μέγεθος Αρχείου 10.95 KB
Αριθμός Εγκαταστάσεων 60
Τρέχουσα Έκδοση 0.4
Τελευταία Ενημέρωση 2016-12-01
Ημερομηνία Δημοσίευσης 2016-12-01
Αξιολόγηση 4.25/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής PaganCode
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Shortcuts by PaganCode QWERTY",
    "short_name": "TabShortcuts",
    "version": "0.4",
    "description": "Adds keyboard shortcuts to Close other \/ right \/ left tabs and Duplicate tab.",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "closeothertabs": {
            "suggested_key": {
                "default": "Ctrl+Q"
            },
            "description": "Close other tabs"
        },
        "closetabstotheright": {
            "suggested_key": {
                "default": "Ctrl+Z"
            },
            "description": "Close tabs to the right"
        },
        "closetabstotheleft": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z"
            },
            "description": "Close tabs to the left"
        },
        "duplicatetab": {
            "suggested_key": {
                "default": "Ctrl+Space"
            },
            "description": "Duplicate tab"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}