youtube_chat_pinner
A Youtube chat of moderater pin on chat window.
youtube_chat_pinnerとは何ですか?
youtube_chat_pinnerはshacchinによって開発されたChromeの拡張機能で、その主な機能は「A Youtube chat of moderater pin on chat window.」です。
拡張機能のスクリーンショット
youtube_chat_pinner拡張機能のCRXファイルをダウンロード
youtube_chat_pinner拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Youtubeの配信や配信アーカイブでスパナ付きコメント時、そのコメントをチャット欄上部に固定します。 固定を解除したい時はコメントをクリックしてください。 Vtuberの配信に他のVtuberが来た時に、コメントが流れてしまってどんなコメントをしたのか分からない……といったことがなくなります。
拡張機能の基本情報
名前 | youtube_chat_pinner |
ID | ckgpjgmdfgheojokphgdiohinmeciakf |
公式URL | https://chromewebstore.google.com/detail/youtubechatpinner/ckgpjgmdfgheojokphgdiohinmeciakf |
説明 | A Youtube chat of moderater pin on chat window. |
ファイルサイズ | 44.67 KB |
インストール数 | 403 |
現在のバージョン | 1.1.0 |
最終更新日 | 2020-08-05 |
公開日 | 2019-07-12 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | shacchin |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/shacchin/youtube_chat_pinner |
対応言語 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "version": "1.1.0", "manifest_version": 2, "default_locale": "ja", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "*:\/\/www.youtube.com\/watch?*", "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch?*" ], "css": [ "css\/contentscript.css" ], "js": [ "contentscript.js" ], "run_at": "document_start", "all_frames": false } ], "options_ui": { "page": "html\/options.html", "chrome_style": true, "open_in_tab": false } } |