Fontify

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

What is Fontify?

Fontify is a Chrome extension developed by MarcCsharp, and its main feature is "This extension allows the user to change the font on the whole page.".

Download Fontify Extension CRX File

Download Fontify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Fontify Fontify
ID npmbploomnpbcejbghaflhmdcnjkembd
Official URL https://chromewebstore.google.com/detail/fontify/npmbploomnpbcejbghaflhmdcnjkembd
Description This extension allows the user to change the font on the whole page.
File Size 5.6 KB
Installation Count 428
Current Version 0.0.1
Last Updated 2018-01-24
Publish Date 2018-01-24
Rating 5.00/5 Total 3 Ratings
Developer MarcCsharp
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}