SmartUpscale

Disables blur for images shown at integer zoom levels.

Qu'est-ce que SmartUpscale ?

SmartUpscale est une extension Chrome développée par https://tanalin.com, et sa fonction principale est "Disables blur for images shown at integer zoom levels.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension SmartUpscale

Téléchargez les fichiers d'extension SmartUpscale au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom SmartUpscale SmartUpscale
ID cafgibgoaehhjoomjcndeogbcmfdbogd
URL Officiel https://chromewebstore.google.com/detail/smartupscale/cafgibgoaehhjoomjcndeogbcmfdbogd
Description Disables blur for images shown at integer zoom levels.
Taille du Fichier 14.36 KB
Nombre d'Installations 3,853
Version Actuelle 1.4
Dernière Mise à Jour 2019-04-06
Date de Publication 2019-04-01
Évaluation 5.00/5 Total 10 Évaluations
Développeur https://tanalin.com
Type de Paiement free
Site Web de l'Extension http://tanalin.com/en/projects/smart-upscale/
Langues Prises en Charge 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"
    ]
}