SmartUpscale

Disables blur for images shown at integer zoom levels.

SmartUpscaleคืออะไร?

SmartUpscale เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://tanalin.com และคุณลักษณะหลักของมันคือ "Disables blur for images shown at integer zoom levels."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SmartUpscale

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}