Fontify

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

Cos'è Fontify?

Fontify è un'estensione di Chrome sviluppata da MarcCsharp, e la sua funzione principale è "This extension allows the user to change the font on the whole page.".

Scarica il file CRX dell'estensione Fontify

Scarica i file di estensione Fontify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Fontify Fontify
ID npmbploomnpbcejbghaflhmdcnjkembd
URL Ufficiale https://chromewebstore.google.com/detail/fontify/npmbploomnpbcejbghaflhmdcnjkembd
Descrizione This extension allows the user to change the font on the whole page.
Dimensione del File 5.6 KB
Conteggio Installazioni 428
Versione Corrente 0.0.1
Ultimo Aggiornamento 2018-01-24
Data di Pubblicazione 2018-01-24
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore MarcCsharp
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}