Pixelate
Toggle pixel-perfect image rendering on webpages and files
Pixelate क्या है?
Pixelate Rohan Adiyodi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Toggle pixel-perfect image rendering on webpages and files"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pixelate एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
---------------------------------------------------------------------------------------- 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 |
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" ] } |