Github Code Font Changer

Change and customize the boring GitHub code viewer font

Github Code Font Changer क्या है?

Github Code Font Changer AmraniCh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Change and customize the boring GitHub code viewer font"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Github Code Font Changer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
    ]
}