Fontify

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

Co to jest Fontify?

Fontify to rozszerzenie Chrome opracowane przez MarcCsharp, a jego główną funkcją jest „This extension allows the user to change the font on the whole page.”.

Pobierz plik CRX rozszerzenia Fontify

Pobierz pliki rozszerzeń Fontify w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Fontify Fontify
ID npmbploomnpbcejbghaflhmdcnjkembd
Oficjalny URL https://chromewebstore.google.com/detail/fontify/npmbploomnpbcejbghaflhmdcnjkembd
Opis This extension allows the user to change the font on the whole page.
Rozmiar pliku 5.6 KB
Liczba instalacji 428
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2018-01-24
Data Publikacji 2018-01-24
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper MarcCsharp
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}