Better Github

Enhance your code reading experience on GitHub

什麼是Better Github?

Better Github是由ceoshikhar開發的Chrome擴展程式,該擴展的主要功能是“Enhance your code reading experience on GitHub”。

擴展截圖

screenshot
screenshot

下載Better Github擴展crx文件

下載Better Github擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extensions allows you to change font and it's size of code text on GitHub. You have to provide a font name and size to be applied to all code text on GitHub.                    

擴展基本資訊

名稱 Better Github Better Github
ID ammeaejgjdeifjekkofhnliedhccbmgp
官方網址 https://chromewebstore.google.com/detail/better-github/ammeaejgjdeifjekkofhnliedhccbmgp
簡介 Enhance your code reading experience on GitHub
檔案大小 59.88 KB
安裝次數 13
目前版本 1.2.0
更新時間 2022-01-16
上架時間 2021-05-18
評分 5.00/5 共 2 次評分
開發者 ceoshikhar
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/ceoshikhar/better-github
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Github",
    "version": "1.2.0",
    "description": "Enhance your code reading experience on GitHub",
    "content_scripts": [
        {
            "js": [
                "better-github.js"
            ],
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "Better Github",
        "default_icon": ".\/assets\/favicon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": ".\/assets\/icon16.png",
        "48": ".\/assets\/icon48.png",
        "128": ".\/assets\/icon128.png"
    }
}