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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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