Fontify

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

Hvad er Fontify?

Fontify er en Chrome-udvidelse udviklet af MarcCsharp, og dens hovedfunktion er "This extension allows the user to change the font on the whole page.".

Download Fontify-udvidelses-CRX-fil

Download Fontify-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Fontify Fontify
ID npmbploomnpbcejbghaflhmdcnjkembd
Officiel URL https://chromewebstore.google.com/detail/fontify/npmbploomnpbcejbghaflhmdcnjkembd
Beskrivelse This extension allows the user to change the font on the whole page.
Filstørrelse 5.6 KB
Antal Installationer 428
Nuværende Version 0.0.1
Senest Opdateret 2018-01-24
Udgivelsesdato 2018-01-24
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler MarcCsharp
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}