Mirrativ Comment Downloader

Download comments for a Mirrative live as a .txt file

Was ist Mirrativ Comment Downloader?

Mirrativ Comment Downloader ist eine Chrome-Erweiterung, die von jesuissuyaa entwickelt wurde, und ihr Hauptmerkmal ist "Download comments for a Mirrative live as a .txt file".

Erweiterungsscreenshots

screenshot

Mirrativ Comment Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Mirrativ Comment Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Mirrativ の配信コメントをテキストファイル(.txt)に自動でダウンロードします

使い方:
1. 拡張機能をインストールする
2. いつも通り「配信開始」ボタンで配信する
3. 「配信停止」ボタンを押す 
→ 自動でテキストファイルがダウンロードされます

備考:
・入室コメントは保存されます
・コメントの順番は時系列です(最初のコメントが一番上の行)
・<名前「コメント」>の形式で保存されます
・Mirrativ bot のコメントは保存されません
・コメントした時間は記録されません(現状)

連絡先: 
・[email protected]
・Twitter @suyaausagi (https://twitter.com/suyaausagi)
要望・コメント等、どんな小さなことでもお気軽にご連絡ください!

---

よかったら支援もおねがいします( ˘ω˘)
https://ko-fi.com/suyaa
※ko-fiでの支払方法は Paypal です                    

Grundlegende Informationen zur Erweiterung

Name Mirrativ Comment Downloader Mirrativ Comment Downloader
ID idicjdflgmhknbnigaoponcjcelifmke
Offizielle URL https://chromewebstore.google.com/detail/mirrativ-comment-download/idicjdflgmhknbnigaoponcjcelifmke
Beschreibung Download comments for a Mirrative live as a .txt file
Dateigröße 12.47 KB
Installationsanzahl 52
Aktuelle Version 1.0
Letztes Update 2020-11-07
Veröffentlichungsdatum 2020-11-07
Entwickler jesuissuyaa
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}