Pixelate
Toggle pixel-perfect image rendering on webpages and files
Pixelate là gì?
Pixelate là một tiện ích mở rộng Chrome được phát triển bởi Rohan Adiyodi, và tính năng chính của nó là "Toggle pixel-perfect image rendering on webpages and files".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pixelate
Tải xuống các tệp mở rộng Pixelate dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
---------------------------------------------------------------------------------------- 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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pixelate |
ID | ffmgnhmbppbhmhnehfjelgnbcbaehofe |
URL Chính Thức | https://chromewebstore.google.com/detail/pixelate/ffmgnhmbppbhmhnehfjelgnbcbaehofe |
Mô tả | Toggle pixel-perfect image rendering on webpages and files |
Kích Thước Tệp | 7.25 KB |
Số Lần Cài Đặt | 703 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2020-01-09 |
Ngày Phát Hành | 2020-01-04 |
Đánh Giá | 4.40/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Rohan Adiyodi |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |