Github Code Font Changer

Change and customize the boring GitHub code viewer font

什么是Github Code Font Changer?

Github Code Font Changer是由AmraniCh开发的Chrome扩展程序,该扩展的主要功能是“Change and customize the boring GitHub code viewer font”。

扩展截图

screenshot
screenshot

下载Github Code Font Changer扩展crx文件

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

扩展使用说明

                        Unhappy with the boring GitHub code viewer font? You're looking for a way to change it without affecting other website's fonts? Well, this extension is made for you raised_hands.

Features:

- As of Version 3, changing font size is supported.
- As of version 2, you can use the fonts installed in your local machine alongside the fonts provided by the extension.
- Change the font weight for the selected font family.
- Hide the indentation guides.

Available fonts :

-   Anonymous Mono.
-   Atma.
-   Courier Prime.
-   Fira Code.
-   Inconsolata.
-   IBM Plex Mono.
-   JetBrains Mono.
-   Oxygen Mono.
-   PT Mono.
-   Roboto Mono.
-   Share Tech Mono.
-   Source Code Pro.
-   Space Mono.
-   Ubuntu Mono.                    

扩展基本信息

名称 Github Code Font Changer Github Code Font Changer
ID jmbophfanmlfkloliildahlpnlbojhfi
官方URL https://chromewebstore.google.com/detail/github-code-font-changer/jmbophfanmlfkloliildahlpnlbojhfi
简介 Change and customize the boring GitHub code viewer font
文件大小 62.46 KB
安装次数 250
当前版本 3.0
更新时间 2024-02-09
上架时间 2021-10-18
评分 5.00/5 共2次评分
开发者 AmraniCh
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/AmraniCh/github-code-font-changer
帮助页面URL https://github.com/AmraniCh/github-code-font-changer
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Code Font Changer",
    "description": "Change and customize the boring GitHub code viewer font",
    "version": "3.0",
    "icons": {
        "16": "images\/logo\/V2\/icon16.png",
        "48": "images\/logo\/V2\/icon48.png",
        "128": "images\/logo\/V2\/icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/*.github.com\/*"
    ]
}