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