Stream Bridge - Watch everyone on Twitch
Watch streamers from other streaming services on Twitch!
Что такое Stream Bridge - Watch everyone on Twitch?
Stream Bridge - Watch everyone on Twitch - это расширение Chrome, разработанное https://www.streambridge.io, и его основная функция - "Watch streamers from other streaming services on Twitch!".
Снимки экрана расширения
Скачать файл CRX расширения Stream Bridge - Watch everyone on Twitch
Скачайте файлы расширений Stream Bridge - Watch everyone on Twitch в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
With this extension, you can:
✔️ Watch streamers from other streaming platforms directly on Twitch
✔️ Follow streamers' channels from different platforms and observe their channel status on the left sidebar of Twitch
✔️ Add your channels to the list if they are not currently listed
This extension currently supports the following streaming platforms: YouTube, Kick, Trovo, VKPlay Live, and WASD. Основная информация о расширении
| Название | |
| ID | oidkgchhceggifadcafliepojifbgdji |
| Официальный URL | https://chromewebstore.google.com/detail/stream-bridge-watch-every/oidkgchhceggifadcafliepojifbgdji |
| Описание | Watch streamers from other streaming services on Twitch! |
| Размер файла | 335 KB |
| Количество установок | 210 |
| Текущая Версия | 1.8.13 |
| Последнее Обновление | 2023-10-13 |
| Дата публикации | 2023-08-08 |
| Рейтинг | 5.00/5 Всего 3 оценок |
| Разработчик | https://www.streambridge.io |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://www.streambridge.io |
| URL страницы помощи | https://www.streambridge.io/support |
| URL страницы политики конфиденциальности | https://www.streambridge.io/privacy |
| Поддерживаемые языки | en,ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_project_name__",
"description": "__MSG_project_description__",
"version": "1.8.13",
"default_locale": "en",
"icons": {
"16": "icons\/icon.png",
"32": "icons\/icon.png",
"48": "icons\/icon.png",
"128": "icons\/icon.png"
},
"action": {
"default_popup": "popup\/index.html"
},
"permissions": [
"declarativeNetRequest",
"storage"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "modifyHeaders",
"enabled": true,
"path": "modifyHeaders.json"
}
]
},
"host_permissions": [
"https:\/\/www.twitch.tv\/",
"https:\/\/kick.com\/",
"https:\/\/wasd.tv\/",
"https:\/\/vkplay.live\/",
"https:\/\/trovo.live\/",
"https:\/\/api.vkplay.live\/",
"https:\/\/api-web.trovo.live\/",
"https:\/\/www.youtube.com\/"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.twitch.tv\/*",
"https:\/\/vkplay.live\/*",
"https:\/\/kick.com\/*",
"https:\/\/trovo.live\/*",
"https:\/\/wasd.tv\/*",
"https:\/\/www.youtube.com\/*"
],
"all_frames": true,
"js": [
"content-script\/index.js"
],
"css": [
"content-script\/index.css"
]
}
]
} | |