Fontify

This extension allows the user to change the font on the whole page.

Co je Fontify?

Fontify je rozšíření Chrome vyvinuté MarcCsharp, a jeho hlavní funkcí je „This extension allows the user to change the font on the whole page.“.

Stáhnout soubor CRX rozšíření Fontify

Stáhněte si soubory rozšíření Fontify 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í

                        This simple extension uses the google fonts API to give the user the ability to change the font on a page to which-ever they wish.

Simply click the extension and select your font from the drop down and see it applied to the page.                    

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

Název Fontify Fontify
ID npmbploomnpbcejbghaflhmdcnjkembd
Oficiální URL https://chromewebstore.google.com/detail/fontify/npmbploomnpbcejbghaflhmdcnjkembd
Popis This extension allows the user to change the font on the whole page.
Velikost souboru 5.6 KB
Počet instalací 428
Aktuální Verze 0.0.1
Poslední Aktualizace 2018-01-24
Datum Vydání 2018-01-24
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář MarcCsharp
E-mail [email protected]
Typ Platby free
Podporované Jazyky en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fontify",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "This extension allows the user to change the font on the whole page.",
    "background": {
        "scripts": [
            "injectFont.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Click to change font"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "activeTab"
    ]
}