GitHub Custom Tab Size
Make tab indented code more readable by allowing you to set a custom tab size
What is GitHub Custom Tab Size?
GitHub Custom Tab Size is a Chrome extension developed by lukechilds, and its main feature is "Make tab indented code more readable by allowing you to set a custom tab size".
Extension Screenshots
Download GitHub Custom Tab Size Extension CRX File
Download GitHub Custom Tab Size extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Set custom tab size for code view on GitHub.com. The tab size setting is synced across all Chrome browsers you're logged into.
Extension Basic Information
Name | GitHub Custom Tab Size |
ID | jcjfkmdkcaopkioccnpbhiemfcmpnghe |
Official URL | https://chromewebstore.google.com/detail/github-custom-tab-size/jcjfkmdkcaopkioccnpbhiemfcmpnghe |
Description | Make tab indented code more readable by allowing you to set a custom tab size |
File Size | 22.35 KB |
Installation Count | 557 |
Current Version | 1.1.0 |
Last Updated | 2019-05-06 |
Publish Date | 2019-05-06 |
Rating | 4.30/5 Total 10 Ratings |
Developer | lukechilds |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/lukechilds/github-custom-tab-size |
Supported Languages | 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" ] } ] } |