Normal Tab Size
Set the default tab-size CSS property to 2 in every page (especially in GitHub)
What is Normal Tab Size?
Normal Tab Size is a Chrome extension developed by fatalis.erratum, and its main feature is "Set the default tab-size CSS property to 2 in every page (especially in GitHub)".
Download Normal Tab Size Extension CRX File
Download Normal 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
Adds a user stylesheet that applies a `tab-size: 2` rule to the root element in every page.
Extension Basic Information
Name | |
ID | kjjblpbmpgkbfnonlanolpcmlolafamn |
Official URL | https://chrome.google.com/webstore/detail/normal-tab-size/kjjblpbmpgkbfnonlanolpcmlolafamn |
Description | Set the default tab-size CSS property to 2 in every page (especially in GitHub) |
File Size | 39.03 KB |
Installation Count | 19 |
Current Version | 1.0.1 |
Last Updated | 2017-05-14 |
Publish Date | 2017-05-14 |
Rating | 5.00/5 Total 1 Ratings |
Developer | fatalis.erratum |
Payment Type | free |
Extension Website | https://github.com/slikts/normaltabs |
Help Page URL | https://github.com/slikts/normaltabs/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Normal Tab Size", "version": "1.0.1", "manifest_version": 2, "description": "Set the default tab-size CSS property to 2 in every page (especially in GitHub)", "homepage_url": "https:\/\/github.com\/slikts\/normaltabs", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "all_frames": true, "css": [ "src\/inject.css" ] }, { "matches": [ "*:\/\/*.github.com\/*" ], "all_frames": true, "css": [ "src\/github.css" ] } ] } |