SmartUpscale

Disables blur for images shown at integer zoom levels.

What is SmartUpscale?

SmartUpscale is a Chrome extension developed by https://tanalin.com, and its main feature is "Disables blur for images shown at integer zoom levels.".

Extension Screenshots

screenshot

Download SmartUpscale Extension CRX File

Download SmartUpscale extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name SmartUpscale SmartUpscale
ID cafgibgoaehhjoomjcndeogbcmfdbogd
Official URL https://chromewebstore.google.com/detail/smartupscale/cafgibgoaehhjoomjcndeogbcmfdbogd
Description Disables blur for images shown at integer zoom levels.
File Size 14.36 KB
Installation Count 3,853
Current Version 1.4
Last Updated 2019-04-06
Publish Date 2019-04-01
Rating 5.00/5 Total 10 Ratings
Developer https://tanalin.com
Payment Type free
Extension Website http://tanalin.com/en/projects/smart-upscale/
Supported Languages 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"
    ]
}