Window Manager

Organize all of your windows and tabs from the side panel.

Τι είναι το Window Manager;

Το Window Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Stash, και η κύρια λειτουργία του είναι "Organize all of your windows and tabs from the side panel.".

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

screenshot
screenshot

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

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

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

                        Similar to Tab Manager Plus, this extension lets you easily keep track of all of your open tabs and windows in a single view. 

You can open the side panel using the extension button or the keyboard shortcut (Windows: ALT + M; Mac: option + M). 

There are two view options that make it easier to manage your tabs:

Window View:  
- View all of your open tabs and windows in one place
- Click a tab icon to quickly navigate to that tab
- Drag and drop tabs between windows to conveniently organize your tabs

Vertical Tabs View:
- View the active window's tabs and tab groups in a vertical list
- Select multiple tabs to quickly group, close or move tabs to a new window

The extension is especially helpful if you like to work in fullscreen mode. You can use the vertical tabs in place of the horizontal tab bar by clicking View > Always Show Toolbar in Full Screen.                    

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

Όνομα Window Manager Window Manager
ID npaccibollphhdfghmmlbmpljhdiaehh
Επίσημο URL https://chromewebstore.google.com/detail/window-manager/npaccibollphhdfghmmlbmpljhdiaehh
Περιγραφή Organize all of your windows and tabs from the side panel.
Μέγεθος Αρχείου 90.83 KB
Αριθμός Εγκαταστάσεων 189
Τρέχουσα Έκδοση 0.0.0.2
Τελευταία Ενημέρωση 2023-06-29
Ημερομηνία Δημοσίευσης 2023-06-28
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Stash
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου http://stash.technology/privacy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Window Manager",
    "version": "0.0.0.2",
    "description": "Organize all of your windows and tabs from the side panel.",
    "background": {
        "service_worker": "service-worker.js",
        "type": "module"
    },
    "side_panel": {
        "default_path": "sidepanel\/index.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "sidepanel\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "https:\/\/stash.technology\/*"
        ]
    },
    "action": {
        "default_title": "Open Window Manager",
        "default_icon": {
            "32": "logo.png"
        }
    },
    "icons": {
        "48": "logo.png",
        "128": "logo.png"
    },
    "permissions": [
        "tabs",
        "tabGroups",
        "sidePanel",
        "storage"
    ],
    "incognito": "spanning",
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+M"
            }
        }
    },
    "manifest_version": 3
}