Change Webpage Fonts

Change Webpage Fonts

Cos'è Change Webpage Fonts?

Change Webpage Fonts è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Change Webpage Fonts".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Change Webpage Fonts

Scarica i file di estensione Change Webpage Fonts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        If the text on the page is difficult to read or not clear enough.
You can:
1) Change the font on the page
2) Increase / decrease text size                    

Informazioni di Base sull'Estensione

Nome Change Webpage Fonts Change Webpage Fonts
ID afelmehoohjbjfpjbadonkcondbilglp
URL Ufficiale https://chromewebstore.google.com/detail/change-webpage-fonts/afelmehoohjbjfpjbadonkcondbilglp
Descrizione Change Webpage Fonts
Dimensione del File 31.82 KB
Conteggio Installazioni 2,449
Versione Corrente 0.0.1
Ultimo Aggiornamento 2020-01-24
Data di Pubblicazione 2020-01-19
Valutazione 4.31/5 Totale 29 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Kirill Bulygin",
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "128": "icons\/icon_128.png"
        },
        "default_popup": "popup\/main_popup.html",
        "default_title": "Page font"
    },
    "content_scripts": [
        {
            "js": [
                "content_scripts__run_at_end.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "js": [
                "content_scripts__run_at_start.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "description": "Change Webpage Fonts",
    "icons": {
        "128": "icons\/icon_128.png"
    },
    "manifest_version": 2,
    "name": "Change Webpage Fonts",
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ],
    "version": "0.0.1"
}