Twitch Chat Overlay
Overlay the Twitch chat when in fullscreen mode.
Twitch Chat Overlayとは何ですか?
Twitch Chat Overlayはtrmcnvnによって開発されたChromeの拡張機能で、その主な機能は「Overlay the Twitch chat when in fullscreen mode.」です。
拡張機能のスクリーンショット
Twitch Chat Overlay拡張機能のCRXファイルをダウンロード
Twitch Chat Overlay拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Twitch Chat Overlay will allow you to view and interact with the chat while watching a stream in fullscreen.
You can move, resize, and toggle the chat window while in full-screen and these settings are remembered the next time you watch! 拡張機能の基本情報
| 名前 | |
| ID | lcljofkmbcdnjekeamikmefcjohmhgng |
| 公式URL | https://chromewebstore.google.com/detail/twitch-chat-overlay/lcljofkmbcdnjekeamikmefcjohmhgng |
| 説明 | Overlay the Twitch chat when in fullscreen mode. |
| ファイルサイズ | 25.92 KB |
| インストール数 | 3,615 |
| 現在のバージョン | 1.10 |
| 最終更新日 | 2020-01-21 |
| 公開日 | 2020-01-14 |
| 評価 | 3.70/5 合計 10 レビュー |
| 開発者 | trmcnvn |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/trmcnvn/twitch-chat-overlay |
| ヘルプページのURL | https://github.com/trmcnvn/twitch-chat-overlay/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Twitch Chat Overlay",
"description": "Overlay the Twitch chat when in fullscreen mode.",
"version": "1.10",
"homepage_url": "https:\/\/github.com\/trmcnvn\/twitch-chat-overlay",
"icons": {
"16": "resources\/icon-16.jpg",
"48": "resources\/icon-48.jpg",
"96": "resources\/icon-96.jpg",
"128": "resources\/icon-128.jpg"
},
"web_accessible_resources": [
"overlay.js"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.twitch.tv\/*"
],
"js": [
"main.js"
],
"css": [
"style.css"
],
"run_at": "document_idle"
}
]
} | |