GLITCH.ext

GLITCH.ext enables you to glitch the virtual façade of any website! Images, texts, and nearly every HTML element forming the…

GLITCH.ext là gì?

GLITCH.ext là một tiện ích mở rộng Chrome được phát triển bởi teddavis.org, và tính năng chính của nó là "GLITCH.ext enables you to glitch the virtual façade of any website! Images, texts, and nearly every HTML element forming the…".

Ả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.ext

Tải xuống các tệp mở rộng GLITCH.ext 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

                        GLITCH.ext enables you to glitch the virtual façade of any website! Images, texts, and nearly every HTML element forming the website's structure can be glitched with the click of a mouse. By moving the mouse over a glitched element, you continue to influence it in real-time. In the settings, one can adjust the file format used, having an aesthetic influence on the way things glitch. Optionally you can even download the glitched images by clicking, for introducing back into a website or compiling into animations. This extension builds upon "p5.glitch" - a byte-level glitching library for p5.js.

GLITCH.ext accompanies the March 2021 Net Works for the House of Electronic Arts Basel (HeK),
https://www.hek.ch/en/program/events-en/event/hek-net-works-ted-davis-glitchext.html

After installing, be sure to 'pin' GLITCH.ext to your toolbar, so you can easily turn it off and on.
Clicking on the glitched finger icon, enables to you adjust these settings:

- GLITCH off/on, toggles extension
- REFRESH, clears glitches
- FORMAT, set the image type of glitches
- LINKS, turn OFF to glitch EVERYTHING
- SAVE, toggles 2nd mouse click from un-glitch / download

Glitches to page are only temporary. 
Simply refresh it to return things to 'normal'.                    

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

Tên GLITCH.ext GLITCH.ext
ID ngngpnbcdhonkblmjkognhhdmhkjjhaf
URL Chính Thức https://chromewebstore.google.com/detail/glitchext/ngngpnbcdhonkblmjkognhhdmhkjjhaf
Mô tả GLITCH.ext enables you to glitch the virtual façade of any website! Images, texts, and nearly every HTML element forming the…
Kích Thước Tệp 390 KB
Số Lần Cài Đặt 593
Phiên Bản Hiện Tại 0.0.0.1
Cập Nhật Lần Cuối 2021-03-15
Ngày Phát Hành 2021-03-14
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển teddavis.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ffd8/glitch.ext
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GLITCH.ext",
    "author": "Ted Davis",
    "version": "0.0.0.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "assets\/js\/p5.min.js",
                "assets\/js\/html2canvas.min.js",
                "assets\/js\/p5.glitch.js",
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/cursors\/glitch_hand_0.png",
        "assets\/cursors\/glitch_hand_1.png",
        "assets\/cursors\/glitch_hand_2.png",
        "assets\/cursors\/glitch_hand_3.png",
        "assets\/cursors\/glitch_hand_4.png",
        "assets\/cursors\/glitch_hand_5.png",
        "assets\/cursors\/glitch_hand_6.png",
        "assets\/images\/glitch_bg_0.gif",
        "assets\/fonts\/robotomono-regular-webfont.woff2",
        "assets\/fonts\/robotomono-regular-webfont.woff",
        "assets\/fonts\/robotomono-light-webfont.woff2",
        "assets\/fonts\/robotomono-light-webfont.woff"
    ],
    "icons": {
        "16": "assets\/icons\/glitch_hand_5_16.png",
        "32": "assets\/icons\/glitch_hand_5_32.png",
        "48": "assets\/icons\/glitch_hand_5_48.png",
        "128": "assets\/icons\/glitch_hand_5_128.png"
    },
    "browser_action": {
        "default_title": "GLITCH.ext",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/glitch_hand_5_16.png",
            "32": "assets\/icons\/glitch_hand_5_32.png",
            "48": "assets\/icons\/glitch_hand_5_48.png",
            "128": "assets\/icons\/glitch_hand_5_128.png"
        }
    },
    "permissions": [
        "storage"
    ]
}