Glitch CSS

Glitch CSS

Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Glitch CSS",
  "version": "1.1",
  "description": "Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.",
  "manifest_version": 2,
  "icons": {
    "16": "glitch16.png",
    "48": "glitch48.png",
    "128": "glitch128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "glitchOff.png",
    "default_title": "Glitch CSS"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-1.7.2.min.js",
        "glitch.js"
      ],
      "all_frames": false
    }
  ]
}