Glitch CSS

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

Что такое Glitch CSS?

Glitch CSS - это расширение Chrome, разработанное autr, и его основная функция - "Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Glitch CSS

Скачайте файлы расширений Glitch CSS в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Glitch CSS Glitch CSS
ID cgcilhkiomcipacenbiamfgkeihaenlp
Официальный URL https://chrome.google.com/webstore/detail/glitch-css/cgcilhkiomcipacenbiamfgkeihaenlp
Описание Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.
Размер файла 81.87 KB
Количество установок 457
Текущая Версия 1.1
Последнее Обновление 2013-11-23
Дата публикации 2013-11-23
Рейтинг 4.46/5 Всего 13 оценок
Разработчик autr
Тип оплаты free
Официальный сайт расширения http://idiron.com
Поддерживаемые языки 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
        }
    ]
}