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
官方網址 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'"
}