Youtube Chat Recorder
App to operate streaming chat.
Youtube Chat Recorderคืออะไร?
Youtube Chat Recorder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mbs-code และคุณลักษณะหลักของมันคือ "App to operate streaming chat."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Chat Recorder
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Chat Recorder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
YouTube のチャットがあるページ(ライブ、アーカイブ等)を開いた際に、チャットを監視し操作する拡張機能です。 全ての機能はローカル環境で使用可能で、外部に送信されることはありません。
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Youtube Chat Recorder |
ID | jfpgcnfhgekhpggplcicbakkcnkhhebk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-chat-recorder/jfpgcnfhgekhpggplcicbakkcnkhhebk |
คำอธิบาย | App to operate streaming chat. |
ขนาดไฟล์ | 2.12 MB |
จำนวนการติดตั้ง | 228 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2021-01-12 |
วันที่เผยแพร่ | 2021-01-12 |
ผู้พัฒนา | mbs-code |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Chat Recorder", "description": "App to operate streaming chat.", "version": "1.0.0", "manifest_version": 2, "icons": { "16": "icons\/icon-16x16.png", "48": "icons\/icon-48x48.png", "128": "icons\/icon-128x128.png" }, "browser_action": { "default_icon": { "16": "icons\/icon-16x16-grey.png", "24": "icons\/icon-24x24-grey.png", "32": "icons\/icon-32x32-grey.png" }, "default_title": "youtube_chat_recorder", "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "background.js" ] }, "options_page": "options\/options.html", "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "tabs", "storage", "unlimitedStorage", "https:\/\/*.youtube.com\/*" ] } |