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