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.".
Снимки экрана расширения
Скачать файл 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] Основная информация о расширении
| Название | |
| 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"
}
} | |