BetterTTV
BetterTTV enhances Twitch and YouTube with new features, emotes, and more.
BetterTTV란 무엇입니까?
BetterTTV은(는) https://betterttv.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "BetterTTV enhances Twitch and YouTube with new features, emotes, and more."입니다.
확장 프로그램 스크린샷
BetterTTV 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Also known as "BTTV" or "Better Twitch TV" by the community, BetterTTV aims to add new features to Twitch and YouTube (in beta). Here's some of the features we add: • Extra emotes in chat - BetterTTV global and per-channel custom emotes • Improved emote menu • Custom keywords targeting phrases, words, users, and chat badges • Split chat lines for easy reading • See deleted links and messages • Anon Chat - join a channel without showing in the user list • Automatically claim channel points bonuses, drops, and moments • Hide visual noise and clutter like recommended channels, bits, replies, notices, and community highlights How to use: • Just install and visit Twitch/YouTube to begin using the add-on. • To enable for YouTube, you need to agree to the additional permission at installation. If you didn't, you can still enable it at any time from the BetterTTV Settings. • Settings can be configured in the chat settings or by clicking the BetterTTV settings from the user dropdown menu. • Note: Not all settings are compatible with YouTube at this time.
확장 프로그램 기본 정보
이름 | BetterTTV |
ID | ajopnjidmegmdimjlfnijceegpefgped |
공식 URL | https://chromewebstore.google.com/detail/betterttv/ajopnjidmegmdimjlfnijceegpefgped |
설명 | BetterTTV enhances Twitch and YouTube with new features, emotes, and more. |
파일 크기 | 661 KB |
설치 횟수 | 4,300,397 |
현재 버전 | 7.5.18 |
최근 업데이트 | 2024-03-01 |
출시 날짜 | 2020-06-21 |
평점 | 4.66/5 총 10325 개의 평점 |
개발자 | https://betterttv.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://betterttv.com |
도움말 페이지 URL | https://nightdev.com/contact |
개인정보 보호 정책 페이지 URL | https://betterttv.com/privacy |
지원되는 언어 | de,en,fr,sw,nl,tr,es,it,hu,pl,pt-BR,pt-PT,cs,ru,uk |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "7.5.18", "manifest_version": 2, "name": "__MSG_EXTENSION_NAME__", "description": "__MSG_EXTENSION_DESCRIPTION__", "homepage_url": "https:\/\/betterttv.com", "default_locale": "en", "content_scripts": [ { "all_frames": true, "js": [ "run.js" ], "matches": [ "*:\/\/*.twitch.tv\/*" ], "exclude_matches": [ "*:\/\/*.twitch.tv\/*.html", "*:\/\/*.twitch.tv\/*.html?*", "*:\/\/*.twitch.tv\/*.htm", "*:\/\/*.twitch.tv\/*.htm?*" ] } ], "web_accessible_resources": [ "betterttv.js", "betterttv.css" ], "permissions": [ "*:\/\/*.twitch.tv\/*" ], "optional_permissions": [ "*:\/\/*.youtube.com\/*" ], "externally_connectable": { "matches": [ "*:\/\/*.twitch.tv\/*" ] }, "icons": { "128": "icon.png" }, "browser_action": { "default_popup": "settings.html" }, "background": { "scripts": [ "background.js" ] } } |