Zet

Makes searching for tabs, muting-unmuting them, etc. a joy. Supercharge your Chrome experience.

Τι είναι το Zet;

Το Zet είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον nandwana92, και η κύρια λειτουργία του είναι "Makes searching for tabs, muting-unmuting them, etc. a joy. Supercharge your Chrome experience.".

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

screenshot
screenshot
screenshot

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

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

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

                        ✲ Highlights

→ Gives a familiar macOS Spotlight like interface to quickly jump between tabs across windows.
→ Jump to a tab and quickly return to where you were for replying to that quick message or changing a song.
→ Fuzzy search in all the open tabs across windows. Search on the title or URL of the tabs.
→ Quickly mute-unmute tabs from a filtered down list of tabs which are audible.
→ See the tabs which aren't audible now but were a while back. This is useful for times like when you want to reply to a message you got a couple of minutes back.
→ Highly accessible. Completely navigable usable just your keyboard.
→ Keyboard shortcuts for switching to a tab, toggling mute of a tab, jumping back to the last tab, etc.

✲ Shortcuts

→ Toggle Zet's visibility
    ⌘ + shift + space 
    ctrl + shift + space


→ Close Zet
    esc

→ Toggle Audible Tabs Only view
    ⌘ + S 
    ctrl + S

→ Jump back to previous tab
    ⌘ + shift + U 
    ctrl + shift + U

→ Jump to nth tab in the results
    ⌥ + [1-9] 
    alt + [1-9]

→ Toggle mute for nth tab in the results
    shift + [1-9]

→ Navigate through the list of tabs
    ▲ / ▼

→ Jump to the highlighted tab in the list
    return 
    enter

Please visit the GitHub link if you want to report bugs or have feature requests.                    

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

Όνομα Zet Zet
ID dpgmcnlebflbgacoghfpdmokolhljmbf
Επίσημο URL https://chromewebstore.google.com/detail/zet/dpgmcnlebflbgacoghfpdmokolhljmbf
Περιγραφή Makes searching for tabs, muting-unmuting them, etc. a joy. Supercharge your Chrome experience.
Μέγεθος Αρχείου 1.92 MB
Αριθμός Εγκαταστάσεων 141
Τρέχουσα Έκδοση 0.2.0
Τελευταία Ενημέρωση 2020-05-06
Ημερομηνία Δημοσίευσης 2020-05-05
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής nandwana92
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/nandwana92/tez
Διεύθυνση URL της Σελίδας Βοήθειας https://twitter.com/nandwana92/
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Zet",
    "version": "0.2.0",
    "description": "Makes searching for tabs, muting-unmuting them, etc. a joy. Supercharge your Chrome experience.",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "images\/*.svg",
        "images\/apps\/*.svg",
        "zet.html"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "commands": {
        "toggle-visibility": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space",
                "mac": "Command+Shift+Space"
            },
            "description": "Toggle Zet's visibility"
        },
        "jump-back-to-previous-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            },
            "description": "Jump back to previous tab"
        }
    },
    "icons": {
        "16": "images\/logo\/bolt16.png",
        "48": "images\/logo\/bolt48.png",
        "128": "images\/logo\/bolt128.png"
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo\/bolt16.png",
            "32": "images\/logo\/bolt32.png",
            "48": "images\/logo\/bolt48.png",
            "128": "images\/logo\/bolt128.png"
        }
    }
}