Glitch CSS
Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.
Was ist Glitch CSS?
Glitch CSS ist eine Chrome-Erweiterung, die von autr entwickelt wurde, und ihr Hauptmerkmal ist "Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.".
Erweiterungsscreenshots
Glitch CSS-Erweiterungs-CRX-Datei herunterladen
Laden Sie Glitch CSS-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | cgcilhkiomcipacenbiamfgkeihaenlp |
Offizielle URL | https://chrome.google.com/webstore/detail/glitch-css/cgcilhkiomcipacenbiamfgkeihaenlp |
Beschreibung | Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position. |
Dateigröße | 81.87 KB |
Installationsanzahl | 457 |
Aktuelle Version | 1.1 |
Letztes Update | 2013-11-23 |
Veröffentlichungsdatum | 2013-11-23 |
Bewertung | 4.46/5 Insgesamt 13 Bewertungen |
Entwickler | autr |
Zahlungsart | free |
Erweiterungswebsite | http://idiron.com |
Unterstützte Sprachen | 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 } ] } |