deblurr

Disables anti-aliasing.

Was ist deblurr?

deblurr ist eine Chrome-Erweiterung, die von bergsell entwickelt wurde, und ihr Hauptmerkmal ist "Disables anti-aliasing.".

deblurr-Erweiterungs-CRX-Datei herunterladen

Laden Sie deblurr-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name deblurr deblurr
ID mjloeooooapfjiifokponbnboglcgdim
Offizielle URL https://chromewebstore.google.com/detail/deblurr/mjloeooooapfjiifokponbnboglcgdim
Beschreibung Disables anti-aliasing.
Dateigröße 10.9 KB
Installationsanzahl 148
Aktuelle Version 1.2
Letztes Update 2013-02-12
Veröffentlichungsdatum 2013-02-12
Bewertung 4.83/5 Insgesamt 6 Bewertungen
Entwickler bergsell
Zahlungsart free
Unterstützte Sprachen 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"
    }
}