Glitch CSS
Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.
Cos'è Glitch CSS?
Glitch CSS è un'estensione di Chrome sviluppata da autr, e la sua funzione principale è "Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Glitch CSS
Scarica i file di estensione Glitch CSS in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | cgcilhkiomcipacenbiamfgkeihaenlp |
| URL Ufficiale | https://chrome.google.com/webstore/detail/glitch-css/cgcilhkiomcipacenbiamfgkeihaenlp |
| Descrizione | Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position. |
| Dimensione del File | 81.87 KB |
| Conteggio Installazioni | 457 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2013-11-23 |
| Data di Pubblicazione | 2013-11-23 |
| Valutazione | 4.46/5 Totale 13 Valutazioni |
| Sviluppatore | autr |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://idiron.com |
| Lingue Supportate | 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
}
]
} | |