Glitch CSS

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

Glitch CSS là gì?

Glitch CSS là một tiện ích mở rộng Chrome được phát triển bởi autr, và tính năng chính của nó là "Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Glitch CSS

Tải xuống các tệp mở rộng Glitch CSS dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Glitch CSS Glitch CSS
ID cgcilhkiomcipacenbiamfgkeihaenlp
URL Chính Thức https://chrome.google.com/webstore/detail/glitch-css/cgcilhkiomcipacenbiamfgkeihaenlp
Mô tả Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.
Kích Thước Tệp 81.87 KB
Số Lần Cài Đặt 457
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2013-11-23
Ngày Phát Hành 2013-11-23
Đánh Giá 4.46/5 Tổng số 13 Đánh Giá
Nhà Phát Triển autr
Loại Thanh Toán free
Trang Web Mở Rộng http://idiron.com
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}