DGG Injector

NOTE: must be reactivated each time and old twitch chat will fail to load until you refresh the page. PepeLaugh, my friends.

Что такое DGG Injector?

DGG Injector - это расширение Chrome, разработанное Aleksandar Stevcic, и его основная функция - "NOTE: must be reactivated each time and old twitch chat will fail to load until you refresh the page. PepeLaugh, my friends.".

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

screenshot

Скачать файл CRX расширения DGG Injector

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

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

                        Just a very basic extension that will swap out twitch chat with d.gg chat in any channel you'd like. Is activated with the press of the button in the extensions bar.

NOTE: must be reactivated each time you refresh the page. PepeLaugh, my friends.



If anything is needed to be changed (as requested via copyright issues, etc), it can be gladly changed or completely taken down. I simply wrote this basic script for an added level of ease and reduced clutter.                    

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

Название DGG Injector DGG Injector
ID dinhjiedidnaoglplfcmilcakpdabdpm
Официальный URL https://chrome.google.com/webstore/detail/dgg-injector/dinhjiedidnaoglplfcmilcakpdabdpm
Описание NOTE: must be reactivated each time and old twitch chat will fail to load until you refresh the page. PepeLaugh, my friends.
Размер файла 46.61 KB
Количество установок 58
Текущая Версия 0.1
Последнее Обновление 2019-11-07
Дата публикации 2019-11-07
Рейтинг 4.67/5 Всего 3 оценок
Разработчик Aleksandar Stevcic
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DGG Injector",
    "version": "0.1",
    "icons": {
        "128": "icon.png"
    },
    "description": "NOTE: must be reactivated each time and old twitch chat will fail to load until you refresh the page. PepeLaugh, my friends.",
    "permissions": [
        "https:\/\/twitch.tv\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "jquery-1.12.4.min.js",
                "main.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}