Better Github

Enhance your code reading experience on GitHub

What is Better Github?

Better Github is a Chrome extension developed by ceoshikhar, and its main feature is "Enhance your code reading experience on GitHub".

Extension Screenshots

screenshot
screenshot

Download Better Github Extension CRX File

Download Better Github extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Better Github Better Github
ID ammeaejgjdeifjekkofhnliedhccbmgp
Official URL https://chromewebstore.google.com/detail/better-github/ammeaejgjdeifjekkofhnliedhccbmgp
Description Enhance your code reading experience on GitHub
File Size 59.88 KB
Installation Count 13
Current Version 1.2.0
Last Updated 2022-01-16
Publish Date 2021-05-18
Rating 5.00/5 Total 2 Ratings
Developer ceoshikhar
Email [email protected]
Payment Type free
Extension Website https://github.com/ceoshikhar/better-github
Supported Languages 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"
    }
}