NCOverlay
動画配信サービスの再生画面にニコニコのコメントを表示する拡張機能
What is NCOverlay?
NCOverlay is a Chrome extension developed by Midra, and its main feature is "動画配信サービスの再生画面にニコニコのコメントを表示する拡張機能".
Extension Screenshots
Download NCOverlay Extension CRX File
Download NCOverlay 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
【概要】 動画配信サービスの再生画面にニコニコのコメントを表示する拡張機能です。 【使い方】 コメントは自動で取得・表示されるので何もしなくてOK。 取得したコメント数は拡張機能のアイコンに表示されます。 対応している動画配信サービスは以下のサイトから確認してください。 https://github.com/Midra429/NCOverlay
Extension Basic Information
Name | NCOverlay |
ID | ofhffkmglkibpkgcfhbgajghlkgplafe |
Official URL | https://chromewebstore.google.com/detail/ncoverlay/ofhffkmglkibpkgcfhbgajghlkgplafe |
Description | 動画配信サービスの再生画面にニコニコのコメントを表示する拡張機能 |
File Size | 80.22 KB |
Installation Count | 157 |
Current Version | 2.6.0 |
Last Updated | 2024-01-28 |
Publish Date | 2023-10-08 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Midra |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Midra429/NCOverlay |
Supported Languages | 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" } |