Niconico Comment Grapher

ニコニコ動画のシークバー上に区間コメント数のグラフを描画します

Niconico Comment Grapherとは何ですか?

Niconico Comment Grapherはasmkaによって開発されたChromeの拡張機能で、その主な機能は「ニコニコ動画のシークバー上に区間コメント数のグラフを描画します」です。

拡張機能のスクリーンショット

screenshot
screenshot

Niconico Comment Grapher拡張機能のCRXファイルをダウンロード

Niconico Comment Grapher拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        コメント数の多い区間から動画の盛り上がり所を推測できます。

リポジトリ:https://github.com/asmka/nicograph

■更新履歴
1.2.6: 別動画遷移で動作しない問題が再発したため1.2.4にロールバック
1.2.5: 一部動画で動作しない問題の解消
1.2.4: 新規タブで動作しない問題の解消
1.2.3: 依存ライブラリの更新
1.2.2: プライバシーポリシーの設定
1.2.1: 動画ページ以外でも動作していた問題の対処
1.2.0: 公式動画に対応(ニコニコ側の仕様変更で動作不能になった機能の全対応完了)
1.1.3: リンククリックによる別動画遷移に対応
1.1.2: シークバーのサイズ変更に追随
1.1.1: 動画時間を超えた位置にコメントが存在するとズレる問題の修正
1.1.0: ニコニコ側の仕様変更で動作しない問題の暫定対処
1.0.3: グラフの下端がズレる問題の修正
1.0.2: 動作の安定性を向上
1.0.1: ニコニコ側の仕様変更に対応
1.0.0: ニコニコ広告の有無に対応
0.2.0: 動作を軽く(冗長なサーバーアクセス処理を削減)
0.1.0: 初期公開版                    

拡張機能の基本情報

名前 Niconico Comment Grapher Niconico Comment Grapher
ID ejgkppbcijkddbdmfalkholdfalbhecj
公式URL https://chromewebstore.google.com/detail/niconico-comment-grapher/ejgkppbcijkddbdmfalkholdfalbhecj
説明 ニコニコ動画のシークバー上に区間コメント数のグラフを描画します
ファイルサイズ 7.58 KB
インストール数 167
現在のバージョン 1.2.6
最終更新日 2023-01-09
公開日 2020-02-26
評価 4.75/5 合計 4 レビュー
開発者 asmka
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/asmka/nicograph
対応言語 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Niconico Comment Grapher",
    "version": "1.2.6",
    "description": "\u30cb\u30b3\u30cb\u30b3\u52d5\u753b\u306e\u30b7\u30fc\u30af\u30d0\u30fc\u4e0a\u306b\u533a\u9593\u30b3\u30e1\u30f3\u30c8\u6570\u306e\u30b0\u30e9\u30d5\u3092\u63cf\u753b\u3057\u307e\u3059",
    "permissions": [
        "tabs"
    ],
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nicovideo.jp\/watch\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "script.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}