Fontify

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

Was ist Fontify?

Fontify ist eine Chrome-Erweiterung, die von MarcCsharp entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows the user to change the font on the whole page.".

Fontify-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fontify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Fontify Fontify
ID npmbploomnpbcejbghaflhmdcnjkembd
Offizielle URL https://chromewebstore.google.com/detail/fontify/npmbploomnpbcejbghaflhmdcnjkembd
Beschreibung This extension allows the user to change the font on the whole page.
Dateigröße 5.6 KB
Installationsanzahl 428
Aktuelle Version 0.0.1
Letztes Update 2018-01-24
Veröffentlichungsdatum 2018-01-24
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler MarcCsharp
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}