Tab Size on GitHub

Make tab indented code more readable by forcing the tab size to 4 instead of 8

Co je Tab Size on GitHub?

Tab Size on GitHub je rozšíření Chrome vyvinuté Sindre Sorhus, a jeho hlavní funkcí je „Make tab indented code more readable by forcing the tab size to 4 instead of 8“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Tab Size on GitHub

Stáhněte si soubory rozšíření Tab Size on GitHub ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Update: GitHub now has a tab size setting: https://github.blog/changelog/2021-09-21-tab-size-rendering-preference/

By default, in browsers, the tab character takes up 8 spaces in width. This makes tab-indented code hard to read. GitHub could have easily overridden this with a more reasonable number like 4, but they have chosen not to. Hence why this extension exists. It sets the tab width to 4.                    

Základní Informace o Rozšíření

Název Tab Size on GitHub Tab Size on GitHub
ID ofjbgncegkdemndciafljngjbdpfmbkn
Oficiální URL https://chromewebstore.google.com/detail/tab-size-on-github/ofjbgncegkdemndciafljngjbdpfmbkn
Popis Make tab indented code more readable by forcing the tab size to 4 instead of 8
Velikost souboru 5.09 KB
Počet instalací 2,002
Aktuální Verze 1.2.0
Poslední Aktualizace 2021-09-26
Datum Vydání 2018-09-24
Hodnocení 4.96/5 Celkem 23 Hodnocení
Vývojář Sindre Sorhus
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/sindresorhus/tab-size-on-github
URL Stránky Nápovědy https://github.com/sindresorhus/tab-size-on-github/issues
URL Stránky Zásad Ochrany Soukromí https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Size on GitHub",
    "version": "1.2.0",
    "description": "Make tab indented code more readable by forcing the tab size to 4 instead of 8",
    "homepage_url": "https:\/\/github.com\/sindresorhus\/tab-size-on-github",
    "manifest_version": 2,
    "minimum_chrome_version": "36",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "https:\/\/github.com\/*\/*",
        "https:\/\/gist.github.com\/*\/*",
        "https:\/\/raw.githubusercontent.com\/*\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/gist.github.com\/*\/*",
                "https:\/\/raw.githubusercontent.com\/*\/*"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}