NCOverlay

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

Wat is NCOverlay?

NCOverlay is een Chrome-extensie ontwikkeld door Midra, en de belangrijkste functie is "動画配信サービスの再生画面にニコニコのコメントを表示する拡張機能".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie NCOverlay

Download NCOverlay-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

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

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

Basisinformatie over de Extensie

Naam NCOverlay NCOverlay
ID ofhffkmglkibpkgcfhbgajghlkgplafe
Officiële URL https://chromewebstore.google.com/detail/ncoverlay/ofhffkmglkibpkgcfhbgajghlkgplafe
Beschrijving 動画配信サービスの再生画面にニコニコのコメントを表示する拡張機能
Bestandsgrootte 80.22 KB
Aantal Installaties 157
Huidige Versie 2.6.0
Laatst Bijgewerkt 2024-01-28
Publicatiedatum 2023-10-08
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Midra
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Midra429/NCOverlay
Ondersteunde Talen 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"
}