d-comments
dアニメストアの動画再生画面にてニコニコ動画のコメントを表示します。
What is d-comments?
d-comments is a Chrome extension developed by 牛蒡, and its main feature is "dアニメストアの動画再生画面にてニコニコ動画のコメントを表示します。".
Extension Screenshots
Download d-comments Extension CRX File
Download d-comments 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
d-comments は dアニメストア ( https://animestore.docomo.ne.jp ) の作品再生画面で、ニコニコ動画にアップロードされた任意の動画のコメントを表示する拡張機能です。
【特徴】
・ ニコニコ動画の動画を検索できる
・ ニコニコ動画のコメントデータをダウンロードして保存できる
【注意】
d-comments は dアニメストア 、 ニコニコ動画の運営会社およびその他の関連会社様その他の関連会社様とは一切関係のない第三者が開発した非公式な非営利目的の拡張機能です。
この拡張機能に関する御意見は、この拡張機能の GitHub リポジトリにお寄せください。
【開発】
以下のリンクから新機能のリクエストやバグ報告、コントリビュートをお待ちしています。
GitHub リポジトリ ( https://github.com/gobosan/d-comments ) Extension Basic Information
| Name | |
| ID | jocjhkklfiaojhhnjiejmimlohaemiep |
| Official URL | https://chromewebstore.google.com/detail/d-comments/jocjhkklfiaojhhnjiejmimlohaemiep |
| Description | dアニメストアの動画再生画面にてニコニコ動画のコメントを表示します。 |
| File Size | 741 KB |
| Installation Count | 159 |
| Current Version | 2023.9.20 |
| Last Updated | 2023-09-20 |
| Publish Date | 2022-08-15 |
| Rating | 5.00/5 Total 1 Ratings |
| Developer | 牛蒡 |
| [email protected] | |
| Payment Type | free |
| Extension Website | https://github.com/gobosan/d-comments |
| Supported Languages | 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\/*"
]
} | |