SmartUpscale

Disables blur for images shown at integer zoom levels.

Co to jest SmartUpscale?

SmartUpscale to rozszerzenie Chrome opracowane przez https://tanalin.com, a jego główną funkcją jest „Disables blur for images shown at integer zoom levels.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia SmartUpscale

Pobierz pliki rozszerzeń SmartUpscale 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa SmartUpscale SmartUpscale
ID cafgibgoaehhjoomjcndeogbcmfdbogd
Oficjalny URL https://chromewebstore.google.com/detail/smartupscale/cafgibgoaehhjoomjcndeogbcmfdbogd
Opis Disables blur for images shown at integer zoom levels.
Rozmiar pliku 14.36 KB
Liczba instalacji 3,853
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2019-04-06
Data Publikacji 2019-04-01
Ocena 5.00/5 Łącznie 10 Oceny
Deweloper https://tanalin.com
Typ Płatności free
Strona Rozszerzenia http://tanalin.com/en/projects/smart-upscale/
Obsługiwane Języki 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"
    ]
}