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ファイルをダウンロード
BetterTTV拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } } |