Pixel-art zoom

Zoom on pixel-art without the blurriness

Pixel-art zoomคืออะไร?

Pixel-art zoom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย entibo และคุณลักษณะหลักของมันคือ "Zoom on pixel-art without the blurriness"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pixel-art zoom

ดาวน์โหลดไฟล์ส่วนขยาย Pixel-art zoom ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
    }
}