Glitch CSS
Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.
Wat is Glitch CSS?
Glitch CSS is een Chrome-extensie ontwikkeld door autr, en de belangrijkste functie is "Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.".
Extensie Screenshots
Download het CRX-bestand van de extensie Glitch CSS
Download Glitch CSS-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | cgcilhkiomcipacenbiamfgkeihaenlp |
| Officiële URL | https://chrome.google.com/webstore/detail/glitch-css/cgcilhkiomcipacenbiamfgkeihaenlp |
| Beschrijving | Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position. |
| Bestandsgrootte | 81.87 KB |
| Aantal Installaties | 457 |
| Huidige Versie | 1.1 |
| Laatst Bijgewerkt | 2013-11-23 |
| Publicatiedatum | 2013-11-23 |
| Beoordeling | 4.46/5 Totaal 13 Beoordelingen |
| Ontwikkelaar | autr |
| Betalingswijze | free |
| Extensiewebsite | http://idiron.com |
| Ondersteunde Talen | 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
}
]
} | |