SmartUpscale

Disables blur for images shown at integer zoom levels.

什么是SmartUpscale?

SmartUpscale是由https://tanalin.com开发的Chrome扩展程序,该扩展的主要功能是“Disables blur for images shown at integer zoom levels.”。

扩展截图

screenshot

下载SmartUpscale扩展crx文件

下载SmartUpscale扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 SmartUpscale SmartUpscale
ID cafgibgoaehhjoomjcndeogbcmfdbogd
官方URL https://chromewebstore.google.com/detail/smartupscale/cafgibgoaehhjoomjcndeogbcmfdbogd
简介 Disables blur for images shown at integer zoom levels.
文件大小 14.36 KB
安装次数 3,853
当前版本 1.4
更新时间 2019-04-06
上架时间 2019-04-01
评分 5.00/5 共10次评分
开发者 https://tanalin.com
付费类型 free
扩展官网 http://tanalin.com/en/projects/smart-upscale/
支持的语言 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"
    ]
}