YouTube Timestamps
Shows YouTube timestamps from comments.
YouTube Timestampsとは何ですか?
YouTube Timestampsはris58hによって開発されたChromeの拡張機能で、その主な機能は「Shows YouTube timestamps from comments.」です。
拡張機能のスクリーンショット
YouTube Timestamps拡張機能のCRXファイルをダウンロード
YouTube Timestamps拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
It adds timestamps right on YouTube video timeline. Hover over them to preview corresponding comments. The extension shows timestamps that YouTube users leave in comments. It shows timestamps from the top 100 comments. If YouTube video doesn't have comments with timestamps or the timestamps are not in the top 100 comments the extension doesn't show anything. Timestamps are placed right on YouTube's video timeline. Hover a timestamp on the timeline to preview the corresponding comment. Key features: - Shows timestamps from YouTube comments on timeline. - Works in Fullscreen and Theater modes. - Works for embedded videos. - Dark theme support. - Open Source https://github.com/ris58h/youtube-timestamps NOTE: To scroll a long comment preview scroll on the timestamp you are hovering over. LIMITATIONS: Only timestamps from the first 100 comments are shown.
拡張機能の基本情報
名前 | YouTube Timestamps |
ID | fjchmkcdmgeimkholkgodkejnikeklmh |
公式URL | https://chromewebstore.google.com/detail/youtube-timestamps/fjchmkcdmgeimkholkgodkejnikeklmh |
説明 | Shows YouTube timestamps from comments. |
ファイルサイズ | 14.33 KB |
インストール数 | 2,794 |
現在のバージョン | 0.9.0 |
最終更新日 | 2023-10-02 |
公開日 | 2020-02-24 |
評価 | 3.93/5 合計 29 レビュー |
開発者 | ris58h |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://ris58h.github.io/youtube-timestamps/ |
ヘルプページのURL | https://github.com/ris58h/youtube-timestamps |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Timestamps", "description": "Shows YouTube timestamps from comments.", "version": "0.9.0", "applications": { "gecko": { "id": "youtube-timestamps@ris58h" } }, "permissions": [ "https:\/\/www.youtube.com\/*", "webRequest", "webRequestBlocking" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/www.youtube-nocookie.com\/embed\/*" ], "all_frames": true, "js": [ "content\/content.js" ], "css": [ "content\/content.css" ] } ], "web_accessible_resources": [ "background\/youtubei.js" ], "background": { "page": "background\/background.html" } } |