deblurr

Disables anti-aliasing.

Vad är deblurr?

deblurr är en Chrome-tillägg utvecklad av bergsell, och dess huvudfunktion är "Disables anti-aliasing.".

Ladda ner deblurr-förlängningens CRX-fil

Ladda ner deblurr-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

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

Grundläggande Information om Tillägg

Namn deblurr deblurr
ID mjloeooooapfjiifokponbnboglcgdim
Officiell webbadress https://chromewebstore.google.com/detail/deblurr/mjloeooooapfjiifokponbnboglcgdim
Beskrivning Disables anti-aliasing.
Filstorlek 10.9 KB
Antal Installationer 148
Aktuell Version 1.2
Senast Uppdaterad 2013-02-12
Publiceringsdatum 2013-02-12
Betyg 4.83/5 Totalt 6 Betyg
Utvecklare bergsell
Betalningssätt free
Stödda Språk 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"
    }
}