Disable Web Fonts

Disables use of custom web fonts on all websites

Co je Disable Web Fonts?

Disable Web Fonts je rozšíření Chrome vyvinuté http://captnemo.in, a jeho hlavní funkcí je „Disables use of custom web fonts on all websites“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Disable Web Fonts

Stáhněte si soubory rozšíření Disable Web Fonts ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        ##Save Bandwidth##

Disables use of custom web fonts with the following extensions:

- woff
- ttf
- otf
- woff2
- eot

Source code is available at https://github.com/captn3m0/disable-web-fonts

It blocks all requests to any filenames that end with the above extensions. 

Please file issues and pull requests on GitHub: https://github.com/captn3m0/disable-web-fonts                    

Základní Informace o Rozšíření

Název Disable Web Fonts Disable Web Fonts
ID olmabeadgbpmhllgdkemfdnmkngkbkeg
Oficiální URL https://chrome.google.com/webstore/detail/disable-web-fonts/olmabeadgbpmhllgdkemfdnmkngkbkeg
Popis Disables use of custom web fonts on all websites
Velikost souboru 18.21 KB
Počet instalací 632
Aktuální Verze 0.4.1
Poslední Aktualizace 2019-03-25
Datum Vydání 2019-03-25
Hodnocení 3.06/5 Celkem 17 Hodnocení
Vývojář http://captnemo.in
Typ Platby free
Webové stránky Rozšíření https://github.com/captn3m0/disable-custom-fonts
URL Stránky Nápovědy https://github.com/captn3m0/disable-custom-fonts/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Disable Web Fonts",
    "description": "Disables use of custom web fonts on all websites",
    "manifest_version": 2,
    "version": "0.4.1",
    "permissions": [
        "webRequest",
        "",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "author": "Nemo",
    "icons": {
        "128": "icon.png"
    }
}