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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}