Twitch Enhancer

Extension that adds what is missing on Twitch.

Twitch Enhancerคืออะไร?

Twitch Enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://enhancer.pro และคุณลักษณะหลักของมันคือ "Extension that adds what is missing on Twitch."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Enhancer

ดาวน์โหลดไฟล์ส่วนขยาย Twitch Enhancer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension enhances Twitch with many features:
- Local wachtime - time spent watching your favorite streamers will be tracked,
- Bumping messages - show that you like someone's message,
- Chatters count - from now on you will know if streamer have fake viewers,
- Enhanced usercard - by clicking on user on chat you can see which streamers he is watching,
- Real Video Time - this shows you real time of video you are watching, also you can paste link of other video with timestamp to see exact moment from the other video,
- Quick Access Link (e.g. TwitchTracker),
- Easy copying emotes and usernames from chat,
- Ping sound when got mentioned on chat,
and more!

https://github.com/animekkk/twitch-enhancer

[email protected]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitch Enhancer Twitch Enhancer
ID knaodoefkjbgmmilogebghadhmnphjih
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-enhancer/knaodoefkjbgmmilogebghadhmnphjih
คำอธิบาย Extension that adds what is missing on Twitch.
ขนาดไฟล์ 517 KB
จำนวนการติดตั้ง 20,000
เวอร์ชันปัจจุบัน 4.0.14
อัปเดตครั้งล่าสุด 2024-02-27
วันที่เผยแพร่ 2021-11-09
คะแนน 4.00/5 รวมทั้งหมด 38 คะแนน
ผู้พัฒนา https://enhancer.pro
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://enhancer.pro
ภาษาที่รองรับ pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Enhancer",
    "description": "Extension that adds what is missing on Twitch.",
    "version": "4.0.14",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "inject.js",
                "content.js"
            ],
            "all_frames": true,
            "css": [
                "bundle.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "worker.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "index.js",
        "bundle.css",
        "img\/*.png",
        "img\/*.svg",
        "img\/*.jpg",
        "sounds\/*.ogg",
        "sounds\/*.mp3"
    ],
    "permissions": [
        "*:\/\/*.twitch.tv\/*"
    ],
    "icons": {
        "128": "img\/icon.png"
    }
}