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

Hvad er Keyboard Shortcuts to Reorder Tabs For Mac?

Keyboard Shortcuts to Reorder Tabs For Mac er en Chrome-udvidelse udviklet af https://ldong.org, og dens hovedfunktion er "Shortcuts: CMD + SHIFT + Left/Right Arrow on Mac, CMD + SHIFT + (5/6/7/8) to tab coorsponding position, 9 move to the end".

Download Keyboard Shortcuts to Reorder Tabs For Mac-udvidelses-CRX-fil

Download Keyboard Shortcuts to Reorder Tabs For Mac-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Keyboard Shortcuts to Reorder Tabs For Mac Keyboard Shortcuts to Reorder Tabs For Mac
ID cimddfnjgmaimdkniombnlenidifeiai
Officiel URL https://chromewebstore.google.com/detail/keyboard-shortcuts-to-reo/cimddfnjgmaimdkniombnlenidifeiai
Beskrivelse Shortcuts: CMD + SHIFT + Left/Right Arrow on Mac, CMD + SHIFT + (5/6/7/8) to tab coorsponding position, 9 move to the end
Filstørrelse 37.8 KB
Antal Installationer 12
Nuværende Version 0.1
Senest Opdateret 2015-04-16
Udgivelsesdato 2015-04-16
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler https://ldong.org
Betalingsmetode free
Udvidelseswebsted https://github.com/ldong/chrome_tab_reorder
Hjælpeside-URL https://github.com/ldong/chrome_tab_reorder
Understøttede Sprog 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
    }
}