Glitch CSS

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

Co to jest Glitch CSS?

Glitch CSS to rozszerzenie Chrome opracowane przez autr, a jego główną funkcją jest „Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Glitch CSS

Pobierz pliki rozszerzeń Glitch CSS w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Glitch CSS Glitch CSS
ID cgcilhkiomcipacenbiamfgkeihaenlp
Oficjalny URL https://chrome.google.com/webstore/detail/glitch-css/cgcilhkiomcipacenbiamfgkeihaenlp
Opis Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.
Rozmiar pliku 81.87 KB
Liczba instalacji 457
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2013-11-23
Data Publikacji 2013-11-23
Ocena 4.46/5 Łącznie 13 Oceny
Deweloper autr
Typ Płatności free
Strona Rozszerzenia http://idiron.com
Obsługiwane Języki 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
        }
    ]
}