Glitch CSS

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

Vad är Glitch CSS?

Glitch CSS är en Chrome-tillägg utvecklad av autr, och dess huvudfunktion är "Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Glitch CSS-förlängningens CRX-fil

Ladda ner Glitch CSS-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Glitch CSS Glitch CSS
ID cgcilhkiomcipacenbiamfgkeihaenlp
Officiell webbadress https://chrome.google.com/webstore/detail/glitch-css/cgcilhkiomcipacenbiamfgkeihaenlp
Beskrivning Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.
Filstorlek 81.87 KB
Antal Installationer 457
Aktuell Version 1.1
Senast Uppdaterad 2013-11-23
Publiceringsdatum 2013-11-23
Betyg 4.46/5 Totalt 13 Betyg
Utvecklare autr
Betalningssätt free
Tilläggswebbplats http://idiron.com
Stödda Språk 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
        }
    ]
}