Pixelate
Toggle pixel-perfect image rendering on webpages and files
Cos'è Pixelate?
Pixelate è un'estensione di Chrome sviluppata da Rohan Adiyodi, e la sua funzione principale è "Toggle pixel-perfect image rendering on webpages and files".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Pixelate
Scarica i file di estensione Pixelate in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
---------------------------------------------------------------------------------------- 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.
Informazioni di Base sull'Estensione
Nome | Pixelate |
ID | ffmgnhmbppbhmhnehfjelgnbcbaehofe |
URL Ufficiale | https://chromewebstore.google.com/detail/pixelate/ffmgnhmbppbhmhnehfjelgnbcbaehofe |
Descrizione | Toggle pixel-perfect image rendering on webpages and files |
Dimensione del File | 7.25 KB |
Conteggio Installazioni | 703 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2020-01-09 |
Data di Pubblicazione | 2020-01-04 |
Valutazione | 4.40/5 Totale 5 Valutazioni |
Sviluppatore | Rohan Adiyodi |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |