deblurr

Disables anti-aliasing.

Co to jest deblurr?

deblurr to rozszerzenie Chrome opracowane przez bergsell, a jego główną funkcją jest „Disables anti-aliasing.”.

Pobierz plik CRX rozszerzenia deblurr

Pobierz pliki rozszerzeń deblurr w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa deblurr deblurr
ID mjloeooooapfjiifokponbnboglcgdim
Oficjalny URL https://chromewebstore.google.com/detail/deblurr/mjloeooooapfjiifokponbnboglcgdim
Opis Disables anti-aliasing.
Rozmiar pliku 10.9 KB
Liczba instalacji 148
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2013-02-12
Data Publikacji 2013-02-12
Ocena 4.83/5 Łącznie 6 Oceny
Deweloper bergsell
Typ Płatności free
Obsługiwane Języki 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"
    }
}