Youtube Chat Recorder
App to operate streaming chat.
Vad är Youtube Chat Recorder?
Youtube Chat Recorder är en Chrome-tillägg utvecklad av mbs-code, och dess huvudfunktion är "App to operate streaming chat.".
Tilläggsskärmbilder
Ladda ner Youtube Chat Recorder-förlängningens CRX-fil
Ladda ner Youtube Chat Recorder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
YouTube のチャットがあるページ(ライブ、アーカイブ等)を開いた際に、チャットを監視し操作する拡張機能です。 全ての機能はローカル環境で使用可能で、外部に送信されることはありません。
Grundläggande Information om Tillägg
Namn | Youtube Chat Recorder |
ID | jfpgcnfhgekhpggplcicbakkcnkhhebk |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-chat-recorder/jfpgcnfhgekhpggplcicbakkcnkhhebk |
Beskrivning | App to operate streaming chat. |
Filstorlek | 2.12 MB |
Antal Installationer | 228 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2021-01-12 |
Publiceringsdatum | 2021-01-12 |
Utvecklare | mbs-code |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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\/*" ] } |