SmartUpscale

Disables blur for images shown at integer zoom levels.

Cos'è SmartUpscale?

SmartUpscale è un'estensione di Chrome sviluppata da https://tanalin.com, e la sua funzione principale è "Disables blur for images shown at integer zoom levels.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione SmartUpscale

Scarica i file di estensione SmartUpscale in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome SmartUpscale SmartUpscale
ID cafgibgoaehhjoomjcndeogbcmfdbogd
URL Ufficiale https://chromewebstore.google.com/detail/smartupscale/cafgibgoaehhjoomjcndeogbcmfdbogd
Descrizione Disables blur for images shown at integer zoom levels.
Dimensione del File 14.36 KB
Conteggio Installazioni 3,853
Versione Corrente 1.4
Ultimo Aggiornamento 2019-04-06
Data di Pubblicazione 2019-04-01
Valutazione 5.00/5 Totale 10 Valutazioni
Sviluppatore https://tanalin.com
Tipo di Pagamento free
Sito Web dell'Estensione http://tanalin.com/en/projects/smart-upscale/
Lingue Supportate 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"
    ]
}