Pixelate

Pixelate

Toggle pixel-perfect image rendering on webpages and files

Merlin
Additional files are visible only to premium users

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