Tab Size on GitHub
Make tab indented code more readable by forcing the tab size to 4 instead of 8
Co to jest Tab Size on GitHub?
Tab Size on GitHub to rozszerzenie Chrome opracowane przez Sindre Sorhus, a jego główną funkcją jest „Make tab indented code more readable by forcing the tab size to 4 instead of 8”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Tab Size on GitHub
Pobierz pliki rozszerzeń Tab Size on GitHub 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
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Tab Size on GitHub |
ID | ofjbgncegkdemndciafljngjbdpfmbkn |
Oficjalny URL | https://chromewebstore.google.com/detail/tab-size-on-github/ofjbgncegkdemndciafljngjbdpfmbkn |
Opis | Make tab indented code more readable by forcing the tab size to 4 instead of 8 |
Rozmiar pliku | 5.09 KB |
Liczba instalacji | 2,002 |
Aktualna Wersja | 1.2.0 |
Ostatnia Aktualizacja | 2021-09-26 |
Data Publikacji | 2018-09-24 |
Ocena | 4.96/5 Łącznie 23 Oceny |
Deweloper | Sindre Sorhus |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/sindresorhus/tab-size-on-github |
Adres URL Strony Pomocy | https://github.com/sindresorhus/tab-size-on-github/issues |
Adres URL Strony Polityki Prywatności | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
Obsługiwane Języki | 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" ] } ] } |