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文件
下载Mirrativ Comment Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Mirrativ の配信コメントをテキストファイル(.txt)に自動でダウンロードします
使い方:
1. 拡張機能をインストールする
2. いつも通り「配信開始」ボタンで配信する
3. 「配信停止」ボタンを押す
→ 自動でテキストファイルがダウンロードされます
備考:
・入室コメントは保存されます
・コメントの順番は時系列です(最初のコメントが一番上の行)
・<名前「コメント」>の形式で保存されます
・Mirrativ bot のコメントは保存されません
・コメントした時間は記録されません(現状)
連絡先:
・[email protected]
・Twitter @suyaausagi (https://twitter.com/suyaausagi)
要望・コメント等、どんな小さなことでもお気軽にご連絡ください!
---
よかったら支援もおねがいします( ˘ω˘)
https://ko-fi.com/suyaa
※ko-fiでの支払方法は Paypal です 扩展基本信息
| 名称 | |
| 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
} | |