DGG Injector

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

Qu'est-ce que DGG Injector ?

DGG Injector est une extension Chrome développée par Aleksandar Stevcic, et sa fonction principale est "NOTE: must be reactivated each time and old twitch chat will fail to load until you refresh the page. PepeLaugh, my friends.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension DGG Injector

Téléchargez les fichiers d'extension DGG Injector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom DGG Injector DGG Injector
ID dinhjiedidnaoglplfcmilcakpdabdpm
URL Officiel https://chrome.google.com/webstore/detail/dgg-injector/dinhjiedidnaoglplfcmilcakpdabdpm
Description NOTE: must be reactivated each time and old twitch chat will fail to load until you refresh the page. PepeLaugh, my friends.
Taille du Fichier 46.61 KB
Nombre d'Installations 58
Version Actuelle 0.1
Dernière Mise à Jour 2019-11-07
Date de Publication 2019-11-07
Évaluation 4.67/5 Total 3 Évaluations
Développeur Aleksandar Stevcic
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}