Tab to Window/Popup - Keyboard Shortcut

Add a keyboard shortcut to move the current tab to a new window or popup.

Τι είναι το Tab to Window/Popup - Keyboard Shortcut;

Το Tab to Window/Popup - Keyboard Shortcut είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://acarabott.github.io/tabToWindow, και η κύρια λειτουργία του είναι "Add a keyboard shortcut to move the current tab to a new window or popup.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Tab to Window/Popup - Keyboard Shortcut

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

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

                        3.3.1

- Remove "tabs" permission, as no longer required.

3.3

- Added "Tab To Previous Window" command

3.2

- No longer tries to move tabs into popup or app windows
- Ported to TypeScript

3.0

- Multi-display support!
- Move tabs by clicking the menu button
- Tabs can be moved between existing windows
- Move multiple tabs at once
- Link to tab: right click a link and use the menu
- Convert a window to popup without moving with the Tab to Popup command
- Settings now synced with Chrome profile
- Common options available in menu button menu

2.3

- Support for fullscreen and maximized windows.
- New default keys, which avoid clashes with default Chrome commands

2.2

- Focus on new window
- Pop back in Command
- Open in 'popup' window
- Keep original window position and size
- Clone original window position and size for new window

Earlier

https://github.com/acarabott/tabToWindow/releases                    

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

Όνομα Tab to Window/Popup - Keyboard Shortcut Tab to Window/Popup - Keyboard Shortcut
ID adbkphmimfcaeonicpmamfddbbnphikh
Επίσημο URL https://chromewebstore.google.com/detail/tab-to-windowpopup-keyboa/adbkphmimfcaeonicpmamfddbbnphikh
Περιγραφή Add a keyboard shortcut to move the current tab to a new window or popup.
Μέγεθος Αρχείου 186 KB
Αριθμός Εγκαταστάσεων 12,446
Τρέχουσα Έκδοση 3.3.1
Τελευταία Ενημέρωση 2022-06-06
Ημερομηνία Δημοσίευσης 2020-06-07
Αξιολόγηση 4.73/5 Συνολικά 109 Αξιολογήσεις
Προγραμματιστής https://acarabott.github.io/tabToWindow
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/acarabott/tabToWindow/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/acarabott/tabToWindow
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab to Window\/Popup - Keyboard Shortcut",
    "short_name": "Tab to Window",
    "version": "3.3.1",
    "author": "Arthur Carabott",
    "description": "Add a keyboard shortcut to move the current tab to a new window or popup.",
    "minimum_chrome_version": "61",
    "icons": {
        "16": "icons\/ttw16.png",
        "48": "icons\/ttw48.png",
        "128": "icons\/ttw128.png"
    },
    "browser_action": {
        "default_title": "Tab to window"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "commands": {
        "01-tab-to-window-normal": {
            "suggested_key": {
                "default": "Alt+X",
                "linux": "Alt+Shift+X"
            },
            "description": "Window"
        },
        "02-tab-to-window-popup": {
            "suggested_key": {
                "default": "Alt+C",
                "linux": "Alt+Shift+C"
            },
            "description": "Popup"
        },
        "03-tab-to-window-next": {
            "suggested_key": {
                "default": "Alt+Z",
                "linux": "Alt+Shift+Z"
            },
            "description": "Next Window"
        },
        "04-tab-to-window-previous": {
            "description": "Previous Window"
        },
        "05-tab-to-window-display": {
            "suggested_key": {
                "default": "Alt+D",
                "linux": "Alt+Shift+D",
                "windows": "Alt+Shift+D"
            },
            "description": "Next Display"
        }
    },
    "permissions": [
        "storage",
        "system.display",
        "contextMenus"
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}