Disable Web Fonts

Disables use of custom web fonts on all websites

Что такое Disable Web Fonts?

Disable Web Fonts - это расширение Chrome, разработанное http://captnemo.in, и его основная функция - "Disables use of custom web fonts on all websites".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Disable Web Fonts

Скачайте файлы расширений Disable Web Fonts в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Disable Web Fonts Disable Web Fonts
ID olmabeadgbpmhllgdkemfdnmkngkbkeg
Официальный URL https://chrome.google.com/webstore/detail/disable-web-fonts/olmabeadgbpmhllgdkemfdnmkngkbkeg
Описание Disables use of custom web fonts on all websites
Размер файла 18.21 KB
Количество установок 632
Текущая Версия 0.4.1
Последнее Обновление 2019-03-25
Дата публикации 2019-03-25
Рейтинг 3.06/5 Всего 17 оценок
Разработчик http://captnemo.in
Тип оплаты free
Официальный сайт расширения https://github.com/captn3m0/disable-custom-fonts
URL страницы помощи https://github.com/captn3m0/disable-custom-fonts/issues
Поддерживаемые языки 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"
    }
}