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