Image Stopper

Image Stopper

Add context menu items to stop animations or hide images.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Image Stopper",
  "version": "1.0.2",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "description": "Add context menu items to stop animations or hide images.",
  "icons": {
    "16": "assets/logo-16.png",
    "48": "assets/logo-48.png",
    "128": "assets/logo-128.png"
  },
  "minimum_chrome_version": "20",
  "permissions": [
    "contextMenus",
    "tabs"
  ]
}