GitHub Custom Tab Size
Make tab indented code more readable by allowing you to set a custom tab size
什么是GitHub Custom Tab Size?
GitHub Custom Tab Size是由lukechilds开发的Chrome扩展程序,该扩展的主要功能是“Make tab indented code more readable by allowing you to set a custom tab size”。
扩展截图
下载GitHub Custom Tab Size扩展crx文件
下载GitHub Custom Tab Size扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Set custom tab size for code view on GitHub.com. The tab size setting is synced across all Chrome browsers you're logged into. 扩展基本信息
| 名称 | |
| ID | jcjfkmdkcaopkioccnpbhiemfcmpnghe |
| 官方URL | https://chromewebstore.google.com/detail/github-custom-tab-size/jcjfkmdkcaopkioccnpbhiemfcmpnghe |
| 简介 | Make tab indented code more readable by allowing you to set a custom tab size |
| 文件大小 | 22.35 KB |
| 安装次数 | 557 |
| 当前版本 | 1.1.0 |
| 更新时间 | 2019-05-06 |
| 上架时间 | 2019-05-06 |
| 评分 | 4.30/5 共10次评分 |
| 开发者 | lukechilds |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/lukechilds/github-custom-tab-size |
| 支持的语言 | 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"
]
}
]
} | |