NCOverlay

動画配信サービスの再生画面にニコニコのコメントを表示する拡張機能

Hvad er NCOverlay?

NCOverlay er en Chrome-udvidelse udviklet af Midra, og dens hovedfunktion er "動画配信サービスの再生画面にニコニコのコメントを表示する拡張機能".

Udvidelsesskærmbilleder

screenshot
screenshot

Download NCOverlay-udvidelses-CRX-fil

Download NCOverlay-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        【概要】
動画配信サービスの再生画面にニコニコのコメントを表示する拡張機能です。

【使い方】
コメントは自動で取得・表示されるので何もしなくてOK。
取得したコメント数は拡張機能のアイコンに表示されます。

対応している動画配信サービスは以下のサイトから確認してください。
https://github.com/Midra429/NCOverlay                    

Grundlæggende oplysninger om udvidelsen

Navn NCOverlay NCOverlay
ID ofhffkmglkibpkgcfhbgajghlkgplafe
Officiel URL https://chromewebstore.google.com/detail/ncoverlay/ofhffkmglkibpkgcfhbgajghlkgplafe
Beskrivelse 動画配信サービスの再生画面にニコニコのコメントを表示する拡張機能
Filstørrelse 80.22 KB
Antal Installationer 157
Nuværende Version 2.6.0
Senest Opdateret 2024-01-28
Udgivelsesdato 2023-10-08
Bedømmelse 5.00/5 Samlet 4 Bedømmelser
Udvikler Midra
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/Midra429/NCOverlay
Understøttede Sprog ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NCOverlay",
    "version": "2.6.0",
    "description": "\u52d5\u753b\u914d\u4fe1\u30b5\u30fc\u30d3\u30b9\u306e\u518d\u751f\u753b\u9762\u306b\u30cb\u30b3\u30cb\u30b3\u306e\u30b3\u30e1\u30f3\u30c8\u3092\u8868\u793a\u3059\u308b\u62e1\u5f35\u6a5f\u80fd",
    "homepage_url": "https:\/\/github.com\/Midra429\/NCOverlay",
    "icons": {
        "16": "assets\/images\/icon_16.png",
        "32": "assets\/images\/icon_32.png",
        "48": "assets\/images\/icon_48.png",
        "128": "assets\/images\/icon_128.png"
    },
    "action": {
        "default_title": "NCOverlay",
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/animestore.docomo.ne.jp\/*",
                "https:\/\/www.amazon.co.jp\/*",
                "https:\/\/abema.tv\/*",
                "https:\/\/www.disneyplus.com\/*",
                "https:\/\/tver.jp\/*",
                "https:\/\/www.b-ch.com\/*",
                "https:\/\/video.unext.jp\/*",
                "https:\/\/tv.dmm.com\/*",
                "https:\/\/www.hulu.jp\/*",
                "https:\/\/lemino.docomo.ne.jp\/*"
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/animestore.docomo.ne.jp\/*"
            ],
            "resources": [
                "plugins\/dAnime.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.nicovideo.jp\/*",
        "https:\/\/animestore.docomo.ne.jp\/*",
        "https:\/\/www.amazon.co.jp\/*",
        "https:\/\/abema.tv\/*",
        "https:\/\/www.disneyplus.com\/*",
        "https:\/\/tver.jp\/*",
        "https:\/\/www.b-ch.com\/*",
        "https:\/\/video.unext.jp\/*",
        "https:\/\/tv.dmm.com\/*",
        "https:\/\/www.hulu.jp\/*",
        "https:\/\/lemino.docomo.ne.jp\/*"
    ],
    "permissions": [
        "storage",
        "tabs",
        "scripting",
        "contextMenus",
        "sidePanel"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "side_panel": {
        "default_path": "side_panel\/index.html"
    },
    "minimum_chrome_version": "114"
}