Pixelate

Toggle pixel-perfect image rendering on webpages and files

Τι είναι το Pixelate;

Το Pixelate είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rohan Adiyodi, και η κύρια λειτουργία του είναι "Toggle pixel-perfect image rendering on webpages and files".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Pixelate

Λήψη αρχείων επέκτασης Pixelate σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ----------------------------------------------------------------------------------------

Have you ever zoomed in on pixel art in Chrome, only to find it extremely blurry?

This extension offers the ability to quickly enable or disable pixel-perfect image rendering to maintain sharp pixels when zooming in. It is comparable to the nearest-neighbor interpolation option in most graphics programs.

Supports images on websites and individual image files opened in Chrome (local and web).

To enable for local files, activate the "Allow access to file URLs" option in the extension settings.

*Note: Not supported for images on the Chrome Web Store or in Chrome settings menus.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Pixelate Pixelate
ID ffmgnhmbppbhmhnehfjelgnbcbaehofe
Επίσημο URL https://chromewebstore.google.com/detail/pixelate/ffmgnhmbppbhmhnehfjelgnbcbaehofe
Περιγραφή Toggle pixel-perfect image rendering on webpages and files
Μέγεθος Αρχείου 7.25 KB
Αριθμός Εγκαταστάσεων 703
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2020-01-09
Ημερομηνία Δημοσίευσης 2020-01-04
Αξιολόγηση 4.40/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Rohan Adiyodi
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pixelate",
    "version": "1.0.2",
    "description": "Toggle pixel-perfect image rendering on webpages and files",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "commands": {
        "toggle": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Toggle pixel-perfect",
            "global": true
        }
    },
    "background": {
        "scripts": [
            "background.js",
            "toggle.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "style.css"
    ]
}