Chat Overlay for Youtube, Twitch & more
Add live chat from Youtube, Twitch, Restream and more to your OBS as a browser overlay. Feature requests accepted!
Что такое Chat Overlay for Youtube, Twitch & more?
Chat Overlay for Youtube, Twitch & more - это расширение Chrome, разработанное Steve Seguin, и его основная функция - "Add live chat from Youtube, Twitch, Restream and more to your OBS as a browser overlay. Feature requests accepted!".
Снимки экрана расширения
Скачать файл CRX расширения Chat Overlay for Youtube, Twitch & more
Скачайте файлы расширений Chat Overlay for Youtube, Twitch & more в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Display selectable chat messages from YouTube, Twitch, Restream, Glimesh, Instagram, Twitter, Zoom, etc., within your Live Broadcasting Studio software, such as OBS Studio. No added downloads or sign ups needed. Overlays are customizable and there is no data collection. Instructions and open-sourced beta-versions are over at https://chat.overlay.ninja Feature requests welcomed. Free Support offered by Steve over at https://discord.vdo.ninja in the channel #chat-overlay-support
Основная информация о расширении
Название | Chat Overlay for Youtube, Twitch & more |
ID | bahhfoidnfogingiolidoidmlkogjlhp |
Официальный URL | https://chromewebstore.google.com/detail/chat-overlay-for-youtube/bahhfoidnfogingiolidoidmlkogjlhp |
Описание | Add live chat from Youtube, Twitch, Restream and more to your OBS as a browser overlay. Feature requests accepted! |
Размер файла | 565 KB |
Количество установок | 2,157 |
Текущая Версия | 1.2.10 |
Последнее Обновление | 2023-01-31 |
Дата публикации | 2021-04-22 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Steve Seguin |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/steveseguin/live-chat-overlay |
URL страницы помощи | https://discord.vdo.ninja |
URL страницы политики конфиденциальности | https://github.com/steveseguin/live-chat-overlay/blob/main/privacy.md |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chat Overlay for Youtube, Twitch & more", "description": "Add live chat from Youtube, Twitch, Restream and more to your OBS as a browser overlay. Feature requests accepted!", "manifest_version": 2, "version": "1.2.10", "homepage_url": "http:\/\/chat.overlay.ninja\/", "icons": { "128": "icons\/icon-128.png" }, "permissions": [ "https:\/\/*.sli.do\/*", "https:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*", "https:\/\/studio.youtube.com\/*", "https:\/\/www.twitch.tv\/*", "https:\/\/glimesh.tv\/*", "https:\/\/chat.restream.io\/*", "https:\/\/www.instagram.com\/*", "https:\/\/instagram.com\/*", "https:\/\/trovo.live\/chat\/*", "https:\/\/www.twitter.com\/*", "https:\/\/www.twitter.com\/*", "https:\/\/facebook.com\/*", "https:\/\/*.zoom.us\/*", "https:\/\/www.facebook.com\/*", "https:\/\/www.mobcrush.com\/*", "https:\/\/www.crowdcast.io\/e\/*", "https:\/\/www.polleverywhere.com\/discourses\/*", "https:\/\/viz.polleverywhere.com\/discourses\/*", "storage" ], "content_scripts": [ { "css": [ "main.css" ], "js": [ "jquery.js", "youtube.js" ], "matches": [ "https:\/\/youtube.com\/live_chat*", "https:\/\/www.youtube.com\/live_chat*", "https:\/\/studio.youtube.com\/live_chat*" ] }, { "css": [ "main.css" ], "js": [ "slido.js" ], "matches": [ "https:\/\/*.sli.do\/*" ] }, { "css": [ "main.css" ], "js": [ "jquery.js", "twitch.js" ], "matches": [ "https:\/\/www.twitch.tv\/popout\/*" ] }, { "css": [ "main.css" ], "js": [ "jquery.js", "glimesh.js" ], "matches": [ "https:\/\/glimesh.tv\/*\/chat" ] }, { "css": [ "main.css" ], "js": [ "jquery.js", "restream.js" ], "matches": [ "https:\/\/chat.restream.io\/*" ] }, { "css": [ "main.css" ], "js": [ "jquery.js", "trovo.js" ], "matches": [ "https:\/\/trovo.live\/chat\/*" ] }, { "css": [ "main.css" ], "js": [ "jquery.js", "instagram.js" ], "matches": [ "https:\/\/instagram.com\/*", "https:\/\/www.instagram.com\/*" ] }, { "css": [ "main.css" ], "js": [ "instalive.js" ], "matches": [ "https:\/\/instagram.com\/*\/live\/", "https:\/\/www.instagram.com\/*\/live\/" ] }, { "css": [ "main.css" ], "js": [ "jquery.js", "twitter.js" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/www.twitter.com\/*" ] }, { "css": [ "main.css" ], "js": [ "facebook.js" ], "matches": [ "https:\/\/facebook.com\/*", "https:\/\/www.facebook.com\/*" ] }, { "css": [ "main.css" ], "js": [ "jquery.js", "mobcrush.js" ], "matches": [ "https:\/\/www.mobcrush.com\/*\/chat.slobs" ] }, { "css": [ "main.css" ], "js": [ "crowdcast.js" ], "matches": [ "https:\/\/www.crowdcast.io\/e\/*" ] }, { "css": [ "main.css" ], "js": [ "zoom.js" ], "matches": [ "https:\/\/*.zoom.us\/*" ] }, { "css": [], "js": [ "withyt.js" ], "matches": [ "https:\/\/*.withyoutube.com\/*" ] }, { "css": [ "main.css" ], "js": [ "polleverywhere.js" ], "matches": [ "https:\/\/www.polleverywhere.com\/discourses\/*", "https:\/\/viz.polleverywhere.com\/discourses\/*" ], "all_frames": true } ], "options_ui": { "page": "settings\/options.html" } } |