d-comments

dアニメストアの動画再生画面にてニコニコ動画のコメントを表示します。

Wat is d-comments?

d-comments is een Chrome-extensie ontwikkeld door 牛蒡, en de belangrijkste functie is "dアニメストアの動画再生画面にてニコニコ動画のコメントを表示します。".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie d-comments

Download d-comments-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

                        d-comments は dアニメストア ( https://animestore.docomo.ne.jp ) の作品再生画面で、ニコニコ動画にアップロードされた任意の動画のコメントを表示する拡張機能です。

【特徴】
・ ニコニコ動画の動画を検索できる
・ ニコニコ動画のコメントデータをダウンロードして保存できる

【注意】
d-comments は dアニメストア 、 ニコニコ動画の運営会社およびその他の関連会社様その他の関連会社様とは一切関係のない第三者が開発した非公式な非営利目的の拡張機能です。
この拡張機能に関する御意見は、この拡張機能の GitHub リポジトリにお寄せください。

【開発】
以下のリンクから新機能のリクエストやバグ報告、コントリビュートをお待ちしています。
GitHub リポジトリ ( https://github.com/gobosan/d-comments )                    

Basisinformatie over de Extensie

Naam d-comments d-comments
ID jocjhkklfiaojhhnjiejmimlohaemiep
Officiële URL https://chromewebstore.google.com/detail/d-comments/jocjhkklfiaojhhnjiejmimlohaemiep
Beschrijving dアニメストアの動画再生画面にてニコニコ動画のコメントを表示します。
Bestandsgrootte 741 KB
Aantal Installaties 159
Huidige Versie 2023.9.20
Laatst Bijgewerkt 2023-09-20
Publicatiedatum 2022-08-15
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar 牛蒡
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/gobosan/d-comments
Ondersteunde Talen ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "default_locale": "ja",
    "version": "2023.9.20",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png",
        "256": "icons\/256.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "background": {
        "type": "module",
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "js": [
                "d_comments.js"
            ],
            "matches": [
                "*:\/\/animestore.docomo.ne.jp\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/animestore.docomo.ne.jp\/*"
            ],
            "resources": [
                "js\/browser-polyfill.js",
                "js\/config.js",
                "js\/index.js",
                "js\/web.js"
            ]
        }
    ],
    "permissions": [
        "cookies",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/animestore.docomo.ne.jp\/*",
        "*:\/\/*.nicovideo.jp\/*",
        "*:\/\/nvcomment.nicovideo.jp\/*",
        "*:\/\/nvapi.nicovideo.jp\/v1\/users\/*",
        "*:\/\/public.api.nicovideo.jp\/v1\/channel\/channelapp\/channels\/*",
        "*:\/\/api.search.nicovideo.jp\/*"
    ]
}