SmartUpscale

Disables blur for images shown at integer zoom levels.

Was ist SmartUpscale?

SmartUpscale ist eine Chrome-Erweiterung, die von https://tanalin.com entwickelt wurde, und ihr Hauptmerkmal ist "Disables blur for images shown at integer zoom levels.".

Erweiterungsscreenshots

screenshot

SmartUpscale-Erweiterungs-CRX-Datei herunterladen

Laden Sie SmartUpscale-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

                        Disables blur for images shown at integer zoom levels. Useful for 4K-monitor owners.

Prevents blurring images which have their size in physical pixels an integer number of times larger than their natural size.

The extension may be useful when using high-DPI monitors, including 4K monitors used at OS-level zoom of 200%.

Images are processed once the page is fully loaded, as well as after dynamic changes on the page and on changing browser-level zoom.

Extension’s options allow to limit maximum image zoom that blur should be prevented at, and to disable blur globally if needed.                    

Grundlegende Informationen zur Erweiterung

Name SmartUpscale SmartUpscale
ID cafgibgoaehhjoomjcndeogbcmfdbogd
Offizielle URL https://chromewebstore.google.com/detail/smartupscale/cafgibgoaehhjoomjcndeogbcmfdbogd
Beschreibung Disables blur for images shown at integer zoom levels.
Dateigröße 14.36 KB
Installationsanzahl 3,853
Aktuelle Version 1.4
Letztes Update 2019-04-06
Veröffentlichungsdatum 2019-04-01
Bewertung 5.00/5 Insgesamt 10 Bewertungen
Entwickler https://tanalin.com
Zahlungsart free
Erweiterungswebsite http://tanalin.com/en/projects/smart-upscale/
Unterstützte Sprachen en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SmartUpscale",
    "description": "__MSG_addon_description__",
    "version": "1.4",
    "author": "Marat Tanalin",
    "homepage_url": "http:\/\/tanalin.com\/en\/projects\/smart-upscale\/",
    "default_locale": "en",
    "icons": {
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "utils.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "utils.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.htm"
    },
    "permissions": [
        "storage"
    ]
}