d-comments
dアニメストアの動画再生画面にてニコニコ動画のコメントを表示します。
Apa itu d-comments?
d-comments adalah ekstensi Chrome yang dikembangkan oleh 牛蒡, dan fitur utamanya adalah "dアニメストアの動画再生画面にてニコニコ動画のコメントを表示します。".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi d-comments
Unduh file ekstensi d-comments dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
d-comments は dアニメストア ( https://animestore.docomo.ne.jp ) の作品再生画面で、ニコニコ動画にアップロードされた任意の動画のコメントを表示する拡張機能です。 【特徴】 ・ ニコニコ動画の動画を検索できる ・ ニコニコ動画のコメントデータをダウンロードして保存できる 【注意】 d-comments は dアニメストア 、 ニコニコ動画の運営会社およびその他の関連会社様その他の関連会社様とは一切関係のない第三者が開発した非公式な非営利目的の拡張機能です。 この拡張機能に関する御意見は、この拡張機能の GitHub リポジトリにお寄せください。 【開発】 以下のリンクから新機能のリクエストやバグ報告、コントリビュートをお待ちしています。 GitHub リポジトリ ( https://github.com/gobosan/d-comments )
Informasi Dasar Ekstensi
Nama | d-comments |
ID | jocjhkklfiaojhhnjiejmimlohaemiep |
URL Resmi | https://chromewebstore.google.com/detail/d-comments/jocjhkklfiaojhhnjiejmimlohaemiep |
Deskripsi | dアニメストアの動画再生画面にてニコニコ動画のコメントを表示します。 |
Ukuran File | 741 KB |
Jumlah Instalasi | 159 |
Versi Saat Ini | 2023.9.20 |
Terakhir Diperbarui | 2023-09-20 |
Tanggal Publikasi | 2022-08-15 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | 牛蒡 |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/gobosan/d-comments |
Bahasa yang Didukung | 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\/*" ] } |