Glitch CSS

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

Hvad er Glitch CSS?

Glitch CSS er en Chrome-udvidelse udviklet af autr, og dens hovedfunktion er "Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Glitch CSS-udvidelses-CRX-fil

Download Glitch CSS-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Glitch CSS Glitch CSS
ID cgcilhkiomcipacenbiamfgkeihaenlp
Officiel URL https://chrome.google.com/webstore/detail/glitch-css/cgcilhkiomcipacenbiamfgkeihaenlp
Beskrivelse Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.
Filstørrelse 81.87 KB
Antal Installationer 457
Nuværende Version 1.1
Senest Opdateret 2013-11-23
Udgivelsesdato 2013-11-23
Bedømmelse 4.46/5 Samlet 13 Bedømmelser
Udvikler autr
Betalingsmetode free
Udvidelseswebsted http://idiron.com
Understøttede Sprog 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
        }
    ]
}