Font Changer

Find elements on the page and change their font with just few clicks.

Co to jest Font Changer?

Font Changer to rozszerzenie Chrome opracowane przez Rafał Florczak, a jego główną funkcją jest „Find elements on the page and change their font with just few clicks.”.

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

                        You can use this extension to make the desired parts of the website look more readable by changing their fonts.                    

Podstawowe informacje o rozszerzeniu

Nazwa Font Changer Font Changer
ID jokhgliahkldheenecgebcldmdcccocp
Oficjalny URL https://chromewebstore.google.com/detail/font-changer/jokhgliahkldheenecgebcldmdcccocp
Opis Find elements on the page and change their font with just few clicks.
Rozmiar pliku 182 KB
Liczba instalacji 357
Aktualna Wersja 0.3.3
Ostatnia Aktualizacja 2022-04-13
Data Publikacji 2019-03-21
Ocena 1.00/5 Łącznie 2 Oceny
Deweloper Rafał Florczak
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/florczakraf/font-changer
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Font Changer",
    "version": "0.3.3",
    "description": "Find elements on the page and change their font with just few clicks.",
    "icons": {
        "64": "font-changer\/icons\/64.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "font-changer\/content-script\/font-changer.js"
            ],
            "css": [
                "font-changer\/content-script\/font-changer.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "font-changer\/icons\/64.png",
        "default_title": "Font Changer"
    },
    "background": {
        "scripts": [
            "font-changer\/background\/background.js"
        ]
    },
    "permissions": [
        "activeTab"
    ]
}