SmartUpscale

Disables blur for images shown at integer zoom levels.

SmartUpscale là gì?

SmartUpscale là một tiện ích mở rộng Chrome được phát triển bởi https://tanalin.com, và tính năng chính của nó là "Disables blur for images shown at integer zoom levels.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng SmartUpscale

Tải xuống các tệp mở rộng SmartUpscale dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SmartUpscale SmartUpscale
ID cafgibgoaehhjoomjcndeogbcmfdbogd
URL Chính Thức https://chromewebstore.google.com/detail/smartupscale/cafgibgoaehhjoomjcndeogbcmfdbogd
Mô tả Disables blur for images shown at integer zoom levels.
Kích Thước Tệp 14.36 KB
Số Lần Cài Đặt 3,853
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2019-04-06
Ngày Phát Hành 2019-04-01
Đánh Giá 5.00/5 Tổng số 10 Đánh Giá
Nhà Phát Triển https://tanalin.com
Loại Thanh Toán free
Trang Web Mở Rộng http://tanalin.com/en/projects/smart-upscale/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}