SmartUpscale

Disables blur for images shown at integer zoom levels.

Wat is SmartUpscale?

SmartUpscale is een Chrome-extensie ontwikkeld door https://tanalin.com, en de belangrijkste functie is "Disables blur for images shown at integer zoom levels.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie SmartUpscale

Download SmartUpscale-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam SmartUpscale SmartUpscale
ID cafgibgoaehhjoomjcndeogbcmfdbogd
Officiële URL https://chromewebstore.google.com/detail/smartupscale/cafgibgoaehhjoomjcndeogbcmfdbogd
Beschrijving Disables blur for images shown at integer zoom levels.
Bestandsgrootte 14.36 KB
Aantal Installaties 3,853
Huidige Versie 1.4
Laatst Bijgewerkt 2019-04-06
Publicatiedatum 2019-04-01
Beoordeling 5.00/5 Totaal 10 Beoordelingen
Ontwikkelaar https://tanalin.com
Betalingswijze free
Extensiewebsite http://tanalin.com/en/projects/smart-upscale/
Ondersteunde Talen 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"
    ]
}