Pixel-art zoom

Zoom on pixel-art without the blurriness

Pixel-art zoom란 무엇입니까?

Pixel-art zoom은(는) entibo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Zoom on pixel-art without the blurriness"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Pixel-art zoom 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Sometimes the low resolution makes it impossible to see an image...
And if you try CTRL,+/- it will just get blurry.
This tool allows you to zoom on an image, on its own page or on any page.

~ Use the context menu to toggle it for an image
~ You can then resize it by click-dragging
~ It will snap to dimensions that are multiples of the original size, to prevent pixel distortion (this feature can be disabled)

Feedback is welcome as this is my first extension !
Hope it will be useful !                    

확장 프로그램 기본 정보

이름 Pixel-art zoom Pixel-art zoom
ID hmekkdlabbjicebobdeopkemgofhhafk
공식 URL https://chromewebstore.google.com/detail/pixel-art-zoom/hmekkdlabbjicebobdeopkemgofhhafk
설명 Zoom on pixel-art without the blurriness
파일 크기 14.8 KB
설치 횟수 592
현재 버전 1.0
최근 업데이트 2015-11-19
출시 날짜 2015-11-19
평점 4.29/5 총 14 개의 평점
개발자 entibo
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://entibo.fr
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pixel-art zoom",
    "short_name": "PAZ",
    "description": "Zoom on pixel-art without the blurriness",
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png",
        "32": "icon_32.png",
        "28": "icon_28.png",
        "24": "icon_24.png",
        "23": "icon_23.png",
        "22": "icon_22.png",
        "21": "icon_21.png",
        "20": "icon_20.png",
        "19": "icon_19.png",
        "18": "icon_18.png",
        "17": "icon_17.png",
        "16": "icon_16.png"
    },
    "version": "1.0",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_title": "Pixel-art zoom",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}