Glitch CSS
Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.
What is Glitch CSS?
Glitch CSS is a Chrome extension developed by autr, and its main feature is "Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.".
Extension Screenshots
Download Glitch CSS Extension CRX File
Download Glitch CSS extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Adds a button to the toolbar which you can toggle on and off. When activated, CSS properties are randomised, with degrees of intensity controlled by mouse position. WARNING: Fast moving images.
Extension Basic Information
Name | |
ID | cgcilhkiomcipacenbiamfgkeihaenlp |
Official URL | https://chrome.google.com/webstore/detail/glitch-css/cgcilhkiomcipacenbiamfgkeihaenlp |
Description | Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position. |
File Size | 81.87 KB |
Installation Count | 457 |
Current Version | 1.1 |
Last Updated | 2013-11-23 |
Publish Date | 2013-11-23 |
Rating | 4.46/5 Total 13 Ratings |
Developer | autr |
Payment Type | free |
Extension Website | http://idiron.com |
Supported Languages | en-GB |
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 } ] } |