Tree Style Tab

A tree style tab navigator

Τι είναι το Tree Style Tab;

Το Tree Style Tab είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον xingtanzjr, και η κύρια λειτουργία του είναι "A tree style tab navigator".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        🚀【New-Feature】:
🔍 Quick Search. 
If no tab is selected, pressing `ENTER` can search the keyword on the Internet directly!

【Shrot-cut】:
    • Alt+Q : Open Tab-Tree. (You can also set your own shortcut for that)

    • ↑ (Arrow-up): move to previous tab 
    • ↓ (Arrow-down):move to next tab
    • ⏎ (Enter): switch to selected tab. If no tab is selected, it will search the keyword on the Internet
    • Alt + w: close all sub tabs for selected tab

【Introduction】:
    Tab-Tree is aimed to solve a very simple but annoying problem, that is, how to switch to the tab you want quickly if your window opened lots of tabs.

    What Tab-Tree different from others is that Tab-Tree gives a tree-style list for tabs. This tree separates all tabs into different groups by the relationship between the child-tab and their parent-tab, which gives you a better insight for all the tabs. All the tabs opened by same tab will become the children of the tab which opens them.

【Other Features】:
    • Search: search all opened tabs by keyword.
    • Bookmarks: search your bookmarks and open the bookmark in a new tab quickly.

【NOTICE】:
    Tabs which was opened before installing this extension could not be showed in a tree view.                    

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

Όνομα Tree Style Tab Tree Style Tab
ID oicakdoenlelpjnkoljnaakdofplkgnd
Επίσημο URL https://chromewebstore.google.com/detail/tree-style-tab/oicakdoenlelpjnkoljnaakdofplkgnd
Περιγραφή A tree style tab navigator
Μέγεθος Αρχείου 374 KB
Αριθμός Εγκαταστάσεων 34,374
Τρέχουσα Έκδοση 1.4.0
Τελευταία Ενημέρωση 2023-07-04
Ημερομηνία Δημοσίευσης 2020-05-28
Αξιολόγηση 3.85/5 Συνολικά 73 Αξιολογήσεις
Προγραμματιστής xingtanzjr
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tree Style Tab",
    "short_name": "Tab Tree",
    "version": "1.4.0",
    "description": "A tree style tab navigator",
    "permissions": [
        "bookmarks",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Alt + Q",
        "default_popup": "index.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+Q",
                "mac": "Alt+Q",
                "linux": "Alt+Q",
                "chromeos": "Alt+Q"
            }
        }
    },
    "manifest_version": 2
}