Glitch CSS

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

什么是Glitch CSS?

Glitch CSS是由autr开发的Chrome扩展程序,该扩展的主要功能是“Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Glitch CSS扩展crx文件

下载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
        }
    ]
}