YouTube Timestamp Comments
An extension that lists timestamp comments on YouTube.
YouTube Timestamp Commentsとは何ですか?
YouTube Timestamp CommentsはAkira Shimizuによって開発されたChromeの拡張機能で、その主な機能は「An extension that lists timestamp comments on YouTube.」です。
拡張機能のスクリーンショット
YouTube Timestamp Comments拡張機能のCRXファイルをダウンロード
YouTube Timestamp Comments拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is a Google Chrome extension that displays timestamp comments on YouTube. The main features are: - displays timestamp comments - sorts by timestamp - jumps playback position to timestamp --- YouTube の時間指定コメントを表示する Google Chrome 拡張機能です。主な機能は以下の通りです。 - タイムスタンプを含むコメントを表示 - 時間の早い順にソート - タイムスタンプのクリックで再生位置をジャンプ
拡張機能の基本情報
名前 | YouTube Timestamp Comments |
ID | khngjoedfeicfbjlcfmiigbokbnlibei |
公式URL | https://chromewebstore.google.com/detail/youtube-timestamp-comment/khngjoedfeicfbjlcfmiigbokbnlibei |
説明 | An extension that lists timestamp comments on YouTube. |
ファイルサイズ | 914 KB |
インストール数 | 412 |
現在のバージョン | 0.8.2 |
最終更新日 | 2022-02-24 |
公開日 | 2020-07-01 |
評価 | 4.00/5 合計 6 レビュー |
開発者 | Akira Shimizu |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/Foo-x/youtube-timestamp-comments |
対応言語 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamp Comments", "version": "0.8.2", "manifest_version": 3, "description": "An extension that lists timestamp comments on YouTube.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "js\/background\/background.js" }, "action": { "default_icon": "icons\/icon19.png", "default_popup": "html\/page_action\/page_action.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*" ], "js": [ "js\/content_scripts\/contentScript.js" ] } ], "permissions": [ "declarativeContent", "storage", "activeTab", "scripting" ] } |