GitHub Custom Tab Size
Make tab indented code more readable by allowing you to set a custom tab size
Was ist GitHub Custom Tab Size?
GitHub Custom Tab Size ist eine Chrome-Erweiterung, die von lukechilds entwickelt wurde, und ihr Hauptmerkmal ist "Make tab indented code more readable by allowing you to set a custom tab size".
Erweiterungsscreenshots
GitHub Custom Tab Size-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub Custom Tab Size-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Set custom tab size for code view on GitHub.com. The tab size setting is synced across all Chrome browsers you're logged into.
Grundlegende Informationen zur Erweiterung
Name | GitHub Custom Tab Size |
ID | jcjfkmdkcaopkioccnpbhiemfcmpnghe |
Offizielle URL | https://chromewebstore.google.com/detail/github-custom-tab-size/jcjfkmdkcaopkioccnpbhiemfcmpnghe |
Beschreibung | Make tab indented code more readable by allowing you to set a custom tab size |
Dateigröße | 22.35 KB |
Installationsanzahl | 557 |
Aktuelle Version | 1.1.0 |
Letztes Update | 2019-05-06 |
Veröffentlichungsdatum | 2019-05-06 |
Bewertung | 4.30/5 Insgesamt 10 Bewertungen |
Entwickler | lukechilds |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/lukechilds/github-custom-tab-size |
Unterstützte Sprachen | 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" ] } ] } |