Github Code Font Changer

Change and customize the boring GitHub code viewer font

Τι είναι το Github Code Font Changer;

Το Github Code Font Changer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον AmraniCh, και η κύρια λειτουργία του είναι "Change and customize the boring GitHub code viewer font".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Github Code Font Changer

Λήψη αρχείων επέκτασης 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\/*"
    ]
}