Twitch Enhancer

Extension that adds what is missing on Twitch.

什么是Twitch Enhancer?

Twitch Enhancer是由https://enhancer.pro开发的Chrome扩展程序,该扩展的主要功能是“Extension that adds what is missing on Twitch.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Twitch Enhancer扩展crx文件

下载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"
    }
}