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