Glitchy Glitch Gloo

Take a screenshot of the current tab viewport and glitch it. Iteration of 'Page Glitcher' by zky829

Что такое Glitchy Glitch Gloo?

Glitchy Glitch Gloo - это расширение Chrome, разработанное ojhnsn, и его основная функция - "Take a screenshot of the current tab viewport and glitch it. Iteration of 'Page Glitcher' by zky829".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Glitchy Glitch Gloo

Скачайте файлы расширений Glitchy Glitch Gloo в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Hi and welcome to my super cute and fun browser extension for making glitches! I used zky829's Viewport Glitcher as a base and added code of my own to align to my project. My browser extension uses the libraries glitch-canvas and p5. By clicking the browser icon the extension takes a screenshot of your tab and glitches both image and text elements.                    

Основная информация о расширении

Название Glitchy Glitch Gloo Glitchy Glitch Gloo
ID hehejefmdmpijnamjenkjogiamhoahha
Официальный URL https://chromewebstore.google.com/detail/glitchy-glitch-gloo/hehejefmdmpijnamjenkjogiamhoahha
Описание Take a screenshot of the current tab viewport and glitch it. Iteration of 'Page Glitcher' by zky829
Размер файла 541 KB
Количество установок 3,617
Текущая Версия 2.0
Последнее Обновление 2018-12-12
Дата публикации 2018-12-11
Рейтинг 4.20/5 Всего 5 оценок
Разработчик ojhnsn
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/ojhnsn/final
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Glitchy Glitch Gloo",
    "description": "Take a screenshot of the current tab viewport and glitch it. Iteration of 'Page Glitcher' by zky829",
    "version": "2.0",
    "author": "zky829, ojhnsn",
    "background": {
        "persistent": false,
        "scripts": [
            "page-glitch.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_title": "Page Glitcher"
    },
    "permissions": [
        "activeTab"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}