SmartUpscale

Disables blur for images shown at integer zoom levels.

O que é SmartUpscale?

SmartUpscale é uma extensão do Chrome desenvolvida por https://tanalin.com, e sua principal característica é "Disables blur for images shown at integer zoom levels.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão SmartUpscale

Baixe arquivos de extensão SmartUpscale no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome SmartUpscale SmartUpscale
ID cafgibgoaehhjoomjcndeogbcmfdbogd
URL Oficial https://chromewebstore.google.com/detail/smartupscale/cafgibgoaehhjoomjcndeogbcmfdbogd
Descrição Disables blur for images shown at integer zoom levels.
Tamanho do Arquivo 14.36 KB
Contagem de Instalações 3,853
Versão Atual 1.4
Última Atualização 2019-04-06
Data de Publicação 2019-04-01
Classificação 5.00/5 Total de 10 Avaliações
Desenvolvedor https://tanalin.com
Tipo de Pagamento free
Site da Extensão http://tanalin.com/en/projects/smart-upscale/
Idiomas Suportados 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"
    ]
}