Font changer

This extension allows you to change the font and his size on site pages (where this is possible).

Co to jest Font changer?

Font changer to rozszerzenie Chrome opracowane przez http://namata.ru, a jego główną funkcją jest „This extension allows you to change the font and his size on site pages (where this is possible).”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Font changer

Pobierz pliki rozszerzeń Font changer 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 extension allows you to change the font and his size on site pages (where this is possible). Just click on extension icon, write your font and his size and press "Set". After that this font will use on each site page (where this is possible).                    

Podstawowe informacje o rozszerzeniu

Nazwa Font changer Font changer
ID gekcpnidalfkkpohbhmpiolpeibmmahm
Oficjalny URL https://chrome.google.com/webstore/detail/font-changer/gekcpnidalfkkpohbhmpiolpeibmmahm
Opis This extension allows you to change the font and his size on site pages (where this is possible).
Rozmiar pliku 251 KB
Liczba instalacji 184
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2020-11-07
Data Publikacji 2020-11-07
Ocena 3.00/5 Łącznie 1 Oceny
Deweloper http://namata.ru
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://en.namata.ru/extensions/fontchanger/
Adres URL Strony Pomocy https://en.namata.ru/support/thanksforinstall/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Font changer",
    "description": "This extension allows you to change the font and his size on site pages (where this is possible).",
    "version": "1.1",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ]
}