Glitch CSS

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

Qu'est-ce que Glitch CSS ?

Glitch CSS est une extension Chrome développée par autr, et sa fonction principale est "Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Glitch CSS

Téléchargez les fichiers d'extension Glitch CSS au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Glitch CSS Glitch CSS
ID cgcilhkiomcipacenbiamfgkeihaenlp
URL Officiel https://chrome.google.com/webstore/detail/glitch-css/cgcilhkiomcipacenbiamfgkeihaenlp
Description Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.
Taille du Fichier 81.87 KB
Nombre d'Installations 457
Version Actuelle 1.1
Dernière Mise à Jour 2013-11-23
Date de Publication 2013-11-23
Évaluation 4.46/5 Total 13 Évaluations
Développeur autr
Type de Paiement free
Site Web de l'Extension http://idiron.com
Langues Prises en Charge 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
        }
    ]
}