Mirrativ Comment Downloader
Download comments for a Mirrative live as a .txt file
Mirrativ Comment Downloader란 무엇입니까?
Mirrativ Comment Downloader은(는) jesuissuyaa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download comments for a Mirrative live as a .txt file"입니다.
확장 프로그램 스크린샷
Mirrativ Comment Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Mirrativ の配信コメントをテキストファイル(.txt)に自動でダウンロードします 使い方: 1. 拡張機能をインストールする 2. いつも通り「配信開始」ボタンで配信する 3. 「配信停止」ボタンを押す → 自動でテキストファイルがダウンロードされます 備考: ・入室コメントは保存されます ・コメントの順番は時系列です(最初のコメントが一番上の行) ・<名前「コメント」>の形式で保存されます ・Mirrativ bot のコメントは保存されません ・コメントした時間は記録されません(現状) 連絡先: ・[email protected] ・Twitter @suyaausagi (https://twitter.com/suyaausagi) 要望・コメント等、どんな小さなことでもお気軽にご連絡ください! --- よかったら支援もおねがいします( ˘ω˘) https://ko-fi.com/suyaa ※ko-fiでの支払方法は Paypal です
확장 프로그램 기본 정보
이름 | Mirrativ Comment Downloader |
ID | idicjdflgmhknbnigaoponcjcelifmke |
공식 URL | https://chromewebstore.google.com/detail/mirrativ-comment-download/idicjdflgmhknbnigaoponcjcelifmke |
설명 | Download comments for a Mirrative live as a .txt file |
파일 크기 | 12.47 KB |
설치 횟수 | 52 |
현재 버전 | 1.0 |
최근 업데이트 | 2020-11-07 |
출시 날짜 | 2020-11-07 |
개발자 | jesuissuyaa |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mirrativ Comment Downloader", "version": "1.0", "description": "Download comments for a Mirrative live as a .txt file", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.mirrativ.com\/broadcast\/*" ], "all_frames": true, "js": [ "contentScript.js" ], "run_at": "document_end" } ], "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 2 } |