SmartUpscale

Disables blur for images shown at integer zoom levels.

Apa itu SmartUpscale?

SmartUpscale adalah ekstensi Chrome yang dikembangkan oleh https://tanalin.com, dan fitur utamanya adalah "Disables blur for images shown at integer zoom levels.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi SmartUpscale

Unduh file ekstensi SmartUpscale dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama SmartUpscale SmartUpscale
ID cafgibgoaehhjoomjcndeogbcmfdbogd
URL Resmi https://chromewebstore.google.com/detail/smartupscale/cafgibgoaehhjoomjcndeogbcmfdbogd
Deskripsi Disables blur for images shown at integer zoom levels.
Ukuran File 14.36 KB
Jumlah Instalasi 3,853
Versi Saat Ini 1.4
Terakhir Diperbarui 2019-04-06
Tanggal Publikasi 2019-04-01
Penilaian 5.00/5 Total 10 Penilaian
Pengembang https://tanalin.com
Tipe Pembayaran free
Situs Ekstensi http://tanalin.com/en/projects/smart-upscale/
Bahasa yang Didukung 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"
    ]
}