Freeze, don't move!

Freeze, don't move!

Stop those annoying CSS animations and animated gifs. Life is busy enough!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Freeze!",
  "version": "0.20",
  "manifest_version": 2,
  "description": "Freeze animations, animated gifs and (a)pngs",
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "icons": {
    "64": "icon.svg",
    "128": "icon.svg"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "page_action": {
    "default_icon": "icon.svg",
    "show_matches": [
      "*://*/*"
    ],
    "default_title": "Freeze!"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}