Pixelate

Toggle pixel-perfect image rendering on webpages and files

Pixelateとは何ですか?

PixelateはRohan Adiyodiによって開発されたChromeの拡張機能で、その主な機能は「Toggle pixel-perfect image rendering on webpages and files」です。

拡張機能のスクリーンショット

screenshot

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