Github tabsize switch
Customize tabsize (2/4/8) on Github.
What is Github tabsize switch?
Github tabsize switch is a Chrome extension developed by arzyu, and its main feature is "Customize tabsize (2/4/8) on Github.".
Extension Screenshots
Download Github tabsize switch Extension CRX File
Download Github tabsize switch 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 logs - v0.3.0: support for Github enterprise # Source code: https://github.com/arzyu/github-tabsize-switch
Extension Basic Information
Name | Github tabsize switch |
ID | mmlfimabppjddbmemjegaojhcibkjmjn |
Official URL | https://chromewebstore.google.com/detail/github-tabsize-switch/mmlfimabppjddbmemjegaojhcibkjmjn |
Description | Customize tabsize (2/4/8) on Github. |
File Size | 15.3 KB |
Installation Count | 40 |
Current Version | 0.3.1 |
Last Updated | 2017-06-06 |
Publish Date | 2017-06-06 |
Rating | 5.00/5 Total 3 Ratings |
Developer | arzyu |
Payment Type | free |
Extension Website | https://github.com/arzyu/github-tabsize-switch |
Help Page URL | https://github.com/arzyu/github-tabsize-switch/issues |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github tabsize switch", "version": "0.3.1", "description": "Customize tabsize (2\/4\/8) on Github.", "icons": { "128": "assets\/tabsize-8.png" }, "browser_action": { "default_title": "Click to switch tabsize on Github." }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "include_globs": [ "https:\/\/github.*", "https:\/\/*.github.*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "tabs", "activeTab", "storage" ] } |