Font Changer

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

Hvad er Font Changer?

Font Changer er en Chrome-udvidelse udviklet af Rafał Florczak, og dens hovedfunktion er "Find elements on the page and change their font with just few clicks.".

Udvidelsesskærmbilleder

screenshot

Download Font Changer-udvidelses-CRX-fil

Download Font Changer-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

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

Grundlæggende oplysninger om udvidelsen

Navn Font Changer Font Changer
ID jokhgliahkldheenecgebcldmdcccocp
Officiel URL https://chromewebstore.google.com/detail/font-changer/jokhgliahkldheenecgebcldmdcccocp
Beskrivelse Find elements on the page and change their font with just few clicks.
Filstørrelse 182 KB
Antal Installationer 357
Nuværende Version 0.3.3
Senest Opdateret 2022-04-13
Udgivelsesdato 2019-03-21
Bedømmelse 1.00/5 Samlet 2 Bedømmelser
Udvikler Rafał Florczak
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/florczakraf/font-changer
Understøttede Sprog 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"
    ]
}