Disable Web Fonts

Disables use of custom web fonts on all websites

Vad är Disable Web Fonts?

Disable Web Fonts är en Chrome-tillägg utvecklad av http://captnemo.in, och dess huvudfunktion är "Disables use of custom web fonts on all websites".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Disable Web Fonts-förlängningens CRX-fil

Ladda ner Disable Web Fonts-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

                        ##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                    

Grundläggande Information om Tillägg

Namn Disable Web Fonts Disable Web Fonts
ID olmabeadgbpmhllgdkemfdnmkngkbkeg
Officiell webbadress https://chrome.google.com/webstore/detail/disable-web-fonts/olmabeadgbpmhllgdkemfdnmkngkbkeg
Beskrivning Disables use of custom web fonts on all websites
Filstorlek 18.21 KB
Antal Installationer 632
Aktuell Version 0.4.1
Senast Uppdaterad 2019-03-25
Publiceringsdatum 2019-03-25
Betyg 3.06/5 Totalt 17 Betyg
Utvecklare http://captnemo.in
Betalningssätt free
Tilläggswebbplats https://github.com/captn3m0/disable-custom-fonts
Hjälpsida URL https://github.com/captn3m0/disable-custom-fonts/issues
Stödda Språk 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"
    }
}