Font Changer

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

Vad är Font Changer?

Font Changer är en Chrome-tillägg utvecklad av Rafał Florczak, och dess huvudfunktion är "Find elements on the page and change their font with just few clicks.".

Tilläggsskärmbilder

screenshot

Ladda ner Font Changer-förlängningens CRX-fil

Ladda ner Font Changer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Font Changer Font Changer
ID jokhgliahkldheenecgebcldmdcccocp
Officiell webbadress https://chromewebstore.google.com/detail/font-changer/jokhgliahkldheenecgebcldmdcccocp
Beskrivning Find elements on the page and change their font with just few clicks.
Filstorlek 182 KB
Antal Installationer 357
Aktuell Version 0.3.3
Senast Uppdaterad 2022-04-13
Publiceringsdatum 2019-03-21
Betyg 1.00/5 Totalt 2 Betyg
Utvecklare Rafał Florczak
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/florczakraf/font-changer
Stödda Språk 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"
    ]
}