Twitch Enhancer

Extension that adds what is missing on Twitch.

Twitch Enhancer là gì?

Twitch Enhancer là một tiện ích mở rộng Chrome được phát triển bởi https://enhancer.pro, và tính năng chính của nó là "Extension that adds what is missing on Twitch.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

                        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]                    

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

Tên Twitch Enhancer Twitch Enhancer
ID knaodoefkjbgmmilogebghadhmnphjih
URL Chính Thức https://chromewebstore.google.com/detail/twitch-enhancer/knaodoefkjbgmmilogebghadhmnphjih
Mô tả Extension that adds what is missing on Twitch.
Kích Thước Tệp 517 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 4.0.14
Cập Nhật Lần Cuối 2024-02-27
Ngày Phát Hành 2021-11-09
Đánh Giá 4.00/5 Tổng số 38 Đánh Giá
Nhà Phát Triển https://enhancer.pro
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://enhancer.pro
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}