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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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