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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |