Change Webpage Fonts

Change Webpage Fonts

Wat is Change Webpage Fonts?

Change Webpage Fonts is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Change Webpage Fonts".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Change Webpage Fonts

Download Change Webpage Fonts-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Change Webpage Fonts Change Webpage Fonts
ID afelmehoohjbjfpjbadonkcondbilglp
Officiële URL https://chromewebstore.google.com/detail/change-webpage-fonts/afelmehoohjbjfpjbadonkcondbilglp
Beschrijving Change Webpage Fonts
Bestandsgrootte 31.82 KB
Aantal Installaties 2,449
Huidige Versie 0.0.1
Laatst Bijgewerkt 2020-01-24
Publicatiedatum 2020-01-19
Beoordeling 4.31/5 Totaal 29 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
}