Fix image size

Fix image size

Click to zoom the image. Example image https://developer.chrome.com/static/images/chrome-logo_2x.png see…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fix image size",
  "version": "0.0.1",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/src/content_scripts.js"
      ]
    }
  ],
  "icons": {
    "16": "/img/16.png",
    "48": "/img/48.png",
    "128": "/img/128.png"
  },
  "permissions": [
    "<all_urls>"
  ]
}