Keyboard Shortcuts to Reorder Tabs For Mac

Shortcuts: CMD + SHIFT + Left/Right Arrow on Mac, CMD + SHIFT + (5/6/7/8) to tab coorsponding position, 9 move to the end

Was ist Keyboard Shortcuts to Reorder Tabs For Mac?

Keyboard Shortcuts to Reorder Tabs For Mac ist eine Chrome-Erweiterung, die von https://ldong.org entwickelt wurde, und ihr Hauptmerkmal ist "Shortcuts: CMD + SHIFT + Left/Right Arrow on Mac, CMD + SHIFT + (5/6/7/8) to tab coorsponding position, 9 move to the end".

Keyboard Shortcuts to Reorder Tabs For Mac-Erweiterungs-CRX-Datei herunterladen

Laden Sie Keyboard Shortcuts to Reorder Tabs For Mac-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Reorder shortcuts using:

CMD + SHIFT + Left/Right Arrow on Mac,

CMD + SHIFT + (5/6/7/8) to tab coorsponding position

CMD + SHIFT + 9 move to the end

Checkout github repo: https://github.com/ldong/chrome_tab_reorder                    

Grundlegende Informationen zur Erweiterung

Name Keyboard Shortcuts to Reorder Tabs For Mac Keyboard Shortcuts to Reorder Tabs For Mac
ID cimddfnjgmaimdkniombnlenidifeiai
Offizielle URL https://chromewebstore.google.com/detail/keyboard-shortcuts-to-reo/cimddfnjgmaimdkniombnlenidifeiai
Beschreibung Shortcuts: CMD + SHIFT + Left/Right Arrow on Mac, CMD + SHIFT + (5/6/7/8) to tab coorsponding position, 9 move to the end
Dateigröße 37.8 KB
Installationsanzahl 12
Aktuelle Version 0.1
Letztes Update 2015-04-16
Veröffentlichungsdatum 2015-04-16
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://ldong.org
Zahlungsart free
Erweiterungswebsite https://github.com/ldong/chrome_tab_reorder
Hilfeseite URL https://github.com/ldong/chrome_tab_reorder
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyboard Shortcuts to Reorder Tabs For Mac",
    "version": "0.1",
    "manifest_version": 2,
    "description": "Shortcuts: CMD + SHIFT + Left\/Right Arrow on Mac, CMD + SHIFT + (5\/6\/7\/8) to tab coorsponding position, 9 move to the end",
    "permissions": [],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tabreorder.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}