GitHub Custom Tab Size

Make tab indented code more readable by allowing you to set a custom tab size

Co to jest GitHub Custom Tab Size?

GitHub Custom Tab Size to rozszerzenie Chrome opracowane przez lukechilds, a jego główną funkcją jest „Make tab indented code more readable by allowing you to set a custom tab size”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GitHub Custom Tab Size

Pobierz pliki rozszerzeń GitHub Custom Tab Size 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

                        Set custom tab size for code view on GitHub.com. The tab size setting is synced across all Chrome browsers you're logged into.                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Custom Tab Size GitHub Custom Tab Size
ID jcjfkmdkcaopkioccnpbhiemfcmpnghe
Oficjalny URL https://chromewebstore.google.com/detail/github-custom-tab-size/jcjfkmdkcaopkioccnpbhiemfcmpnghe
Opis Make tab indented code more readable by allowing you to set a custom tab size
Rozmiar pliku 22.35 KB
Liczba instalacji 557
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2019-05-06
Data Publikacji 2019-05-06
Ocena 4.30/5 Łącznie 10 Oceny
Deweloper lukechilds
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/lukechilds/github-custom-tab-size
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Custom Tab Size",
    "version": "1.1.0",
    "icons": {
        "256": "icon.png"
    },
    "description": "Make tab indented code more readable by allowing you to set a custom tab size",
    "homepage_url": "https:\/\/github.com\/lukechilds\/github-custom-tab-size",
    "manifest_version": 2,
    "minimum_chrome_version": "36",
    "browser_action": {
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/gist.github.com\/*\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ]
}