SmartUpscale

Disables blur for images shown at integer zoom levels.

Co je SmartUpscale?

SmartUpscale je rozšíření Chrome vyvinuté https://tanalin.com, a jeho hlavní funkcí je „Disables blur for images shown at integer zoom levels.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření SmartUpscale

Stáhněte si soubory rozšíření SmartUpscale ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název SmartUpscale SmartUpscale
ID cafgibgoaehhjoomjcndeogbcmfdbogd
Oficiální URL https://chromewebstore.google.com/detail/smartupscale/cafgibgoaehhjoomjcndeogbcmfdbogd
Popis Disables blur for images shown at integer zoom levels.
Velikost souboru 14.36 KB
Počet instalací 3,853
Aktuální Verze 1.4
Poslední Aktualizace 2019-04-06
Datum Vydání 2019-04-01
Hodnocení 5.00/5 Celkem 10 Hodnocení
Vývojář https://tanalin.com
Typ Platby free
Webové stránky Rozšíření http://tanalin.com/en/projects/smart-upscale/
Podporované Jazyky 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"
    ]
}