Pixelate
Toggle pixel-perfect image rendering on webpages and files
什麼是Pixelate?
Pixelate是由Rohan Adiyodi開發的Chrome擴展程式,該擴展的主要功能是“Toggle pixel-perfect image rendering on webpages and files”。
擴展截圖
下載Pixelate擴展crx文件
下載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 |
ID | ffmgnhmbppbhmhnehfjelgnbcbaehofe |
官方網址 | 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" ] } |