Glitch CSS

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

Apa itu Glitch CSS?

Glitch CSS adalah ekstensi Chrome yang dikembangkan oleh autr, dan fitur utamanya adalah "Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Glitch CSS

Unduh file ekstensi Glitch CSS dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Glitch CSS Glitch CSS
ID cgcilhkiomcipacenbiamfgkeihaenlp
URL Resmi https://chrome.google.com/webstore/detail/glitch-css/cgcilhkiomcipacenbiamfgkeihaenlp
Deskripsi Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.
Ukuran File 81.87 KB
Jumlah Instalasi 457
Versi Saat Ini 1.1
Terakhir Diperbarui 2013-11-23
Tanggal Publikasi 2013-11-23
Penilaian 4.46/5 Total 13 Penilaian
Pengembang autr
Tipe Pembayaran free
Situs Ekstensi http://idiron.com
Bahasa yang Didukung 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
        }
    ]
}