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
官方網址 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"
    ]
}