Font changer

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

Was ist Font changer?

Font changer ist eine Chrome-Erweiterung, die von http://namata.ru entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to change the font and his size on site pages (where this is possible).".

Erweiterungsscreenshots

screenshot

Font changer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Font changer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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).                    

Grundlegende Informationen zur Erweiterung

Name Font changer Font changer
ID gekcpnidalfkkpohbhmpiolpeibmmahm
Offizielle URL https://chrome.google.com/webstore/detail/font-changer/gekcpnidalfkkpohbhmpiolpeibmmahm
Beschreibung This extension allows you to change the font and his size on site pages (where this is possible).
Dateigröße 251 KB
Installationsanzahl 184
Aktuelle Version 1.1
Letztes Update 2020-11-07
Veröffentlichungsdatum 2020-11-07
Bewertung 3.00/5 Insgesamt 1 Bewertungen
Entwickler http://namata.ru
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://en.namata.ru/extensions/fontchanger/
Hilfeseite URL https://en.namata.ru/support/thanksforinstall/
Unterstützte Sprachen 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"
    ]
}