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 là gì?

DGG Injector là một tiện ích mở rộng Chrome được phát triển bởi Aleksandar Stevcic, và tính năng chính của nó là "NOTE: must be reactivated each time and old twitch chat will fail to load until you refresh the page. PepeLaugh, my friends.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng DGG Injector

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

                        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.                    

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

Tên DGG Injector DGG Injector
ID dinhjiedidnaoglplfcmilcakpdabdpm
URL Chính Thức https://chrome.google.com/webstore/detail/dgg-injector/dinhjiedidnaoglplfcmilcakpdabdpm
Mô tả NOTE: must be reactivated each time and old twitch chat will fail to load until you refresh the page. PepeLaugh, my friends.
Kích Thước Tệp 46.61 KB
Số Lần Cài Đặt 58
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2019-11-07
Ngày Phát Hành 2019-11-07
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Aleksandar Stevcic
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}