Image Remover

Image Remover

Removes images from the page. Makes the page editable

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Image Remover",
  "version": "1.0.1",
  "description": "Removes images from the page. Makes the page editable",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "icons": {
    "64": "images/icon_64.png",
    "128": "images/icon_128.png"
  },
  "author": "[email protected]"
}