Showroom 簡易データ処理班

roomのプロフィール上部にShowroomAPIで取得したイベントのポイント,支援ゲージのログをとって、差分やグラフ化するツール。フォロワー数、るーむレベルも

What is Showroom 簡易データ処理班?

Showroom 簡易データ処理班 is a Chrome extension developed by pano, and its main feature is "roomのプロフィール上部にShowroomAPIで取得したイベントのポイント,支援ゲージのログをとって、差分やグラフ化するツール。フォロワー数、るーむレベルも".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Showroom 簡易データ処理班 Extension CRX File

Download Showroom 簡易データ処理班 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Showroom(ライブ配信サイト)の roomのプロフィール下部にShowroomAPIで取得したイベントのポイント,支援ゲージのログをとって、差分やグラフ化するツール

現状のバージョンはプロトタイプで、フォロワー数や、ルームレベルは取得しません。

自分や、ライバル、興味のあるroomの得点能力を調べる手間を減らします。

完成したばかりの状態です。
先に作成した、Shoroom 通知表のしくみをそのまま利用し、扱うデータをかえた感じで短時間で作りました。

Showroom用のデータ処理系のツールはまた別に作る予定で、簡単に作れる部分のみをChromeアドオンとして公開することにしました。

外部ライブラリとして以下を利用してます。
* jExcel(簡易スプレッドシート)とそれに必要なライブラリ
* jQuery
* moment.js
* Chart.js(チャート作成)
* FileSaver.js

v0.0.1からv0.0.2での変更点
* 順位の無いイベントでも正しくデータ取得
* フォロワー数のテーブルと表追加
* 配信中かのデータ取得
* ぱのっくすのルームでも動作するように修正
* タイトルクリックでデータ表示オンオフ
* 貢献度100へのリンクも追加
* 6分後記録ボタンのバグ修正
* データ削除後の表示更新するように修正

v0.0.2->v0.0.3での変更点
* v0.0.1で取得したイベントデータが存在すると、エラーになるバグ修正

v0.0.3->v0.0.4での変更点
*前のバージョンの修正で、quest要素のあるイベントで、ランキングの方のpointではなく、questの方のpointを記録してしまうバグが混入していたのを修正

v0.0.5での変更点
*jExcelで表の表示を行なっていましたが、処理が重くなっていたので、HTMLのTableにて表の表示を行うように改造しました。                    

Extension Basic Information

Name Showroom 簡易データ処理班 Showroom 簡易データ処理班
ID mdpocapnecnjfkfngdcebmmpbeojokgg
Official URL https://chromewebstore.google.com/detail/showroom-%E7%B0%A1%E6%98%93%E3%83%87%E3%83%BC%E3%82%BF%E5%87%A6%E7%90%86%E7%8F%AD/mdpocapnecnjfkfngdcebmmpbeojokgg
Description roomのプロフィール上部にShowroomAPIで取得したイベントのポイント,支援ゲージのログをとって、差分やグラフ化するツール。フォロワー数、るーむレベルも
File Size 284 KB
Installation Count 126
Current Version 0.0.5
Last Updated 2021-07-18
Publish Date 2020-10-06
Developer pano
Email [email protected]
Payment Type free
Help Page URL https://www.showroom-live.com/room/profile?room_id=326408
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_icon": {
            "128": "res\/iconW128.png",
            "16": "res\/iconW16.png",
            "48": "res\/iconW48.png"
        },
        "default_title": "Showroom \u7c21\u6613\u30c7\u30fc\u30bf\u51e6\u7406\u73ed"
    },
    "content_scripts": [
        {
            "css": [
                "Chart.min.css"
            ],
            "js": [
                "moment-with-locales.js",
                "Chart.min.js",
                "jquery-3.5.1.min.js",
                "FileSaver.min.js",
                "srkdata.js"
            ],
            "matches": [
                "https:\/\/www.showroom-live.com\/room\/profile?room_id=*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "room\u306e\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u4e0a\u90e8\u306bShowroomAPI\u3067\u53d6\u5f97\u3057\u305f\u30a4\u30d9\u30f3\u30c8\u306e\u30dd\u30a4\u30f3\u30c8,\u652f\u63f4\u30b2\u30fc\u30b8\u306e\u30ed\u30b0\u3092\u3068\u3063\u3066\u3001\u5dee\u5206\u3084\u30b0\u30e9\u30d5\u5316\u3059\u308b\u30c4\u30fc\u30eb\u3002\u30d5\u30a9\u30ed\u30ef\u30fc\u6570\u3001\u308b\u30fc\u3080\u30ec\u30d9\u30eb\u3082",
    "icons": {
        "128": "res\/iconW128.png",
        "16": "res\/iconW16.png",
        "48": "res\/iconW48.png"
    },
    "manifest_version": 2,
    "name": "Showroom \u7c21\u6613\u30c7\u30fc\u30bf\u51e6\u7406\u73ed",
    "permissions": [
        "storage"
    ],
    "version": "0.0.5",
    "web_accessible_resources": [
        "res\/*"
    ]
}