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