Imageless

Imageless

Removes images from any webpage. It's Simple, press 'ESC' to hide images, '~' (tilde) to show.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Imageless",
  "version": "1.1.2",
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "description": "Removes images from any webpage. It's Simple, press 'ESC' to hide images, '~' (tilde) to show.",
  "icons": {
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.js",
        "ld.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}