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”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 GitHub Custom Tab Size GitHub Custom Tab Size
ID jcjfkmdkcaopkioccnpbhiemfcmpnghe
官方網址 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"
            ]
        }
    ]
}