Ham NicoVideo
hamによるniconico便利機能
What is Ham NicoVideo?
Ham NicoVideo is a Chrome extension developed by hukihamu, and its main feature is "hamによるniconico便利機能".
Extension Screenshots
Download Ham NicoVideo Extension CRX File
Download Ham NicoVideo 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
HamNicoVideo Q.これは何? A.ニコニコ動画を使いやすくする(主観)ためのChrome拡張機能です。 Q.どんな機能があるの? どんな機能を実装予定? A.大まかに下記の機能があります。 ・ニコレポ強調表示 ・ニコレポフィルター ・カスタムマイリスト(1ボタンで設定したマイリストに登録できる) ・再生速度固定 ・タグ シリーズ通知機能(曜日別) ・動画視聴画面での後で見る削除 詳細は、https://github.com/hukihamu/HamNicoVideo Q.利用方法は? A.本拡張機能を導入するだけです。 Q.こんな機能が欲しいんだけど バグ・不具合・修正案がある A.レビュー等に書き込みをお願いします。
Extension Basic Information
Name | Ham NicoVideo |
ID | bnmkahbkccmncbcgdmdfgbcbklnmeghb |
Official URL | https://chromewebstore.google.com/detail/ham-nicovideo/bnmkahbkccmncbcgdmdfgbcbklnmeghb |
Description | hamによるniconico便利機能 |
File Size | 108 KB |
Installation Count | 91 |
Current Version | 0.6.1 |
Last Updated | 2022-01-28 |
Publish Date | 2020-09-23 |
Rating | 5.00/5 Total 2 Ratings |
Developer | hukihamu |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/hukihamu/HamNicoVideo |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ham NicoVideo", "version": "0.6.1", "manifest_version": 2, "description": "ham\u306b\u3088\u308bniconico\u4fbf\u5229\u6a5f\u80fd", "options_page": "html\/options.html", "permissions": [ "storage", "tabs", "alarms", "*:\/\/*.nicovideo.jp\/*" ], "background": { "scripts": [ "lib\/browser.js", "lib\/parameter.js", "lib\/browser\/storage.js", "js\/util\/video_data.js", "background.js" ], "persistent": true }, "browser_action": { "default_popup": "html\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.nicovideo.jp\/*" ], "js": [ "lib\/browser.js", "lib\/parameter.js", "lib\/browser\/storage.js" ], "css": [ "css\/nico.css" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.nicovideo.jp\/my\/*", "*:\/\/*.nicovideo.jp\/my?*" ], "js": [ "js\/util\/watch_later.js", "js\/video\/my\/created_at_new_color.js", "js\/video\/my\/custom_layout.js", "js\/video\/my\/side_fold.js", "js\/video\/my\/filter.js", "js\/video\/my\/add_watch_later.js", "js\/video\/my\/highlight.js", "js\/video\/my\/on_check_removed_video.js", "js\/video\/my\/repo.js" ], "css": [ "css\/video\/repo.css" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.nicovideo.jp\/watch\/*" ], "js": [ "js\/util\/watch_later.js", "js\/video\/watch\/custom_my_list.js", "js\/video\/watch\/remove_watch_later.js", "js\/video\/watch\/show_comment_list.js", "js\/video\/watch\/watch_later_list.js", "js\/video\/watch\/hold_setting.js", "js\/video\/watch\/watch.js" ], "css": [ "css\/video\/watch.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "css\/*.css", "html\/*.html" ] } |