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

Co to jest Keyboard Shortcuts to Reorder Tabs For Mac?

Keyboard Shortcuts to Reorder Tabs For Mac to rozszerzenie Chrome opracowane przez https://ldong.org, a jego główną funkcją jest „Shortcuts: CMD + SHIFT + Left/Right Arrow on Mac, CMD + SHIFT + (5/6/7/8) to tab coorsponding position, 9 move to the end”.

Pobierz plik CRX rozszerzenia Keyboard Shortcuts to Reorder Tabs For Mac

Pobierz pliki rozszerzeń Keyboard Shortcuts to Reorder Tabs For Mac w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Keyboard Shortcuts to Reorder Tabs For Mac Keyboard Shortcuts to Reorder Tabs For Mac
ID cimddfnjgmaimdkniombnlenidifeiai
Oficjalny URL https://chromewebstore.google.com/detail/keyboard-shortcuts-to-reo/cimddfnjgmaimdkniombnlenidifeiai
Opis Shortcuts: CMD + SHIFT + Left/Right Arrow on Mac, CMD + SHIFT + (5/6/7/8) to tab coorsponding position, 9 move to the end
Rozmiar pliku 37.8 KB
Liczba instalacji 12
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2015-04-16
Data Publikacji 2015-04-16
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://ldong.org
Typ Płatności free
Strona Rozszerzenia https://github.com/ldong/chrome_tab_reorder
Adres URL Strony Pomocy https://github.com/ldong/chrome_tab_reorder
Obsługiwane Języki 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
    }
}