Font changer

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

Vad är Font changer?

Font changer är en Chrome-tillägg utvecklad av http://namata.ru, och dess huvudfunktion är "This extension allows you to change the font and his size on site pages (where this is possible).".

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

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

Grundläggande Information om Tillägg

Namn Font changer Font changer
ID gekcpnidalfkkpohbhmpiolpeibmmahm
Officiell webbadress https://chrome.google.com/webstore/detail/font-changer/gekcpnidalfkkpohbhmpiolpeibmmahm
Beskrivning This extension allows you to change the font and his size on site pages (where this is possible).
Filstorlek 251 KB
Antal Installationer 184
Aktuell Version 1.1
Senast Uppdaterad 2020-11-07
Publiceringsdatum 2020-11-07
Betyg 3.00/5 Totalt 1 Betyg
Utvecklare http://namata.ru
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://en.namata.ru/extensions/fontchanger/
Hjälpsida URL https://en.namata.ru/support/thanksforinstall/
Stödda Språk 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"
    ]
}