change all UI fonts

Changes all the UI font to a user-given font.

Co je change all UI fonts?

change all UI fonts je rozšíření Chrome vyvinuté https://virutcham.ca, a jeho hlavní funkcí je „Changes all the UI font to a user-given font.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření change all UI fonts

Stáhněte si soubory rozšíření change all UI fonts ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Changes all the font-faces on all the web sites to a user given local font. Enter your desired font in the options by clicking the extension icon.

Please note that this will change all the fonts of all elements, meaning Font-Awesome or any other sites that facilititate icons using fonts will also have their font changed. This will render those graphics as squares. I made this as a simple extension to force all the fonts for simple sites, so your mileage may vary. Thanks for understanding.

Source can be found here: https://github.com/dsivasuthan/change-all-ui-fonts

Please leave your feedback. Thank you.                    

Základní Informace o Rozšíření

Název change all UI fonts change all UI fonts
ID loiejdbcheeiipmakhghinclmpafiiel
Oficiální URL https://chromewebstore.google.com/detail/change-all-ui-fonts/loiejdbcheeiipmakhghinclmpafiiel
Popis Changes all the UI font to a user-given font.
Velikost souboru 78.19 KB
Počet instalací 6,108
Aktuální Verze 1.4.2
Poslední Aktualizace 2021-01-07
Datum Vydání 2020-05-21
Hodnocení 4.51/5 Celkem 59 Hodnocení
Vývojář https://virutcham.ca
E-mail [email protected]
Typ Platby free
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "exclude_globs": [],
            "include_globs": [
                "*"
            ],
            "js": [
                "foo.js",
                "scripts.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Changes all the UI font to a user-given font.",
    "manifest_version": 2,
    "name": "change all UI fonts",
    "options_page": "options.html",
    "version": "1.4.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "change font family",
        "default_popup": "options.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "storage"
    ]
}