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.”。
擴展截圖
下載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] 擴展基本資訊
| 名稱 | |
| ID | knaodoefkjbgmmilogebghadhmnphjih |
| 官方網址 | 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"
}
} | |