Github Tab Size Manager

Use this extension to view git files with tab size specified

什么是Github Tab Size Manager?

Github Tab Size Manager是由Namandeep Singh Chugh开发的Chrome扩展程序,该扩展的主要功能是“Use this extension to view git files with tab size specified”。

扩展截图

screenshot
screenshot

下载Github Tab Size Manager扩展crx文件

下载Github Tab Size Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Change tab size (from options menu) while viewing code on github.com or gist.github.com                    

扩展基本信息

名称 Github Tab Size Manager Github Tab Size Manager
ID enjegllgfhbkappebfdbgheefocllglo
官方URL https://chromewebstore.google.com/detail/github-tab-size-manager/enjegllgfhbkappebfdbgheefocllglo
简介 Use this extension to view git files with tab size specified
文件大小 506 KB
安装次数 17
当前版本 1.5
更新时间 2017-03-17
上架时间 2017-03-17
评分 5.00/5 共1次评分
开发者 Namandeep Singh Chugh
电子邮箱 [email protected]
付费类型 free
支持的语言 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'"
}