Wheeltab

Switch tabs using your mouse wheel.

Τι είναι το Wheeltab;

Το Wheeltab είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mat, και η κύρια λειτουργία του είναι "Switch tabs using your mouse wheel.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Wheeltab

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

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

                        Wheeltab allows you to navigate through your open tabs using your mouse wheel.

Press and hold the left button of your mouse, without moving your mouse. Then, use your mouse wheel to scroll through the list of open tabs in the menu that will appear. Release the left button to jump to the highlighted tab. Use the "Escape" key to close the menu and stay on the current tab.                    

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

Όνομα Wheeltab Wheeltab
ID acipnfeildejkaebclgfajogkmilgldh
Επίσημο URL https://chromewebstore.google.com/detail/wheeltab/acipnfeildejkaebclgfajogkmilgldh
Περιγραφή Switch tabs using your mouse wheel.
Μέγεθος Αρχείου 11.09 KB
Αριθμός Εγκαταστάσεων 253
Τρέχουσα Έκδοση 0.0.4
Τελευταία Ενημέρωση 2022-04-18
Ημερομηνία Δημοσίευσης 2016-05-27
Αξιολόγηση 1.75/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Mat
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/matco/wheeltab
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/matco/wheeltab
Υποστηριζόμενες Γλώσσες en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wheeltab",
    "version": "0.0.4",
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "incognito": "spanning",
    "author": "Matthieu Corageoud",
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "type": "module",
        "service_worker": "background.js"
    }
}