deblurr

Disables anti-aliasing.

Что такое deblurr?

deblurr - это расширение Chrome, разработанное bergsell, и его основная функция - "Disables anti-aliasing.".

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

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

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

                        The deblurr extension will turn off font smoothing to make the text appear crisp for those of you who cannot stand the normal font smoothing that is done to hide the fact that we have very low density screens on our computers.

Totally harmless extension, the only thing that it does is to set document.body.setAttribute('style','-webkit-font-smoothing:none');.                    

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

Название deblurr deblurr
ID mjloeooooapfjiifokponbnboglcgdim
Официальный URL https://chromewebstore.google.com/detail/deblurr/mjloeooooapfjiifokponbnboglcgdim
Описание Disables anti-aliasing.
Размер файла 10.9 KB
Количество установок 148
Текущая Версия 1.2
Последнее Обновление 2013-02-12
Дата публикации 2013-02-12
Рейтинг 4.83/5 Всего 6 оценок
Разработчик bergsell
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "deblurr",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Disables anti-aliasing.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "cs.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}