Github Tab Size Manager
Use this extension to view git files with tab size specified
What is Github Tab Size Manager?
Github Tab Size Manager is a Chrome extension developed by Namandeep Singh Chugh, and its main feature is "Use this extension to view git files with tab size specified".
Extension Screenshots
Download Github Tab Size Manager Extension CRX File
Download Github Tab Size Manager 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
Change tab size (from options menu) while viewing code on github.com or gist.github.com
Extension Basic Information
Name | Github Tab Size Manager |
ID | enjegllgfhbkappebfdbgheefocllglo |
Official URL | https://chromewebstore.google.com/detail/github-tab-size-manager/enjegllgfhbkappebfdbgheefocllglo |
Description | Use this extension to view git files with tab size specified |
File Size | 506 KB |
Installation Count | 17 |
Current Version | 1.5 |
Last Updated | 2017-03-17 |
Publish Date | 2017-03-17 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Namandeep Singh Chugh |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Tab Size Manager", "version": "1.5", "manifest_version": 2, "icons": { "128": "images\/icon.png" }, "options_page": "options.html", "description": "Use this extension to view git files with tab size specified", "permissions": [ "storage", "*:\/\/gist.github.com\/*", "*:\/\/github.com\/*", "tabs", "webNavigation" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*", "*:\/\/gist.github.com\/*" ], "js": [ "js\/jquery-3.1.1.min.js", "js\/content.js" ] } ], "background": { "scripts": [ "js\/background.js" ] }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |