GitHub Custom Tab Size
Make tab indented code more readable by allowing you to set a custom tab size
Hvad er GitHub Custom Tab Size?
GitHub Custom Tab Size er en Chrome-udvidelse udviklet af lukechilds, og dens hovedfunktion er "Make tab indented code more readable by allowing you to set a custom tab size".
Udvidelsesskærmbilleder
Download GitHub Custom Tab Size-udvidelses-CRX-fil
Download GitHub Custom Tab Size-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Set custom tab size for code view on GitHub.com. The tab size setting is synced across all Chrome browsers you're logged into.
Grundlæggende oplysninger om udvidelsen
Navn | GitHub Custom Tab Size |
ID | jcjfkmdkcaopkioccnpbhiemfcmpnghe |
Officiel URL | https://chromewebstore.google.com/detail/github-custom-tab-size/jcjfkmdkcaopkioccnpbhiemfcmpnghe |
Beskrivelse | Make tab indented code more readable by allowing you to set a custom tab size |
Filstørrelse | 22.35 KB |
Antal Installationer | 557 |
Nuværende Version | 1.1.0 |
Senest Opdateret | 2019-05-06 |
Udgivelsesdato | 2019-05-06 |
Bedømmelse | 4.30/5 Samlet 10 Bedømmelser |
Udvikler | lukechilds |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/lukechilds/github-custom-tab-size |
Understøttede Sprog | 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" ] } ] } |