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