Youtube Timeline
Youtube comments on a timeline
Youtube Timelineとは何ですか?
Youtube TimelineはAwesome Extensionsによって開発されたChromeの拡張機能で、その主な機能は「Youtube comments on a timeline」です。
拡張機能のスクリーンショット
Youtube Timeline拡張機能のCRXファイルをダウンロード
Youtube Timeline拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This app will show you comments with timestamp right above the timeline. * Excellent performance * Fetching up to 1000 comments per video * Supports all player sizes and window resizing * Supports fullscreen * Popup menu with settings * Loading indicator * Turn on/off button in a player control-bar * Seek video to certain comment by clicking on avatar Does not gather any private/personal information Does not check browsing history Does not work in incognito mode Has access only to youtube.com domain. Safe. Stable. Open sourced.
拡張機能の基本情報
名前 | Youtube Timeline |
ID | jjhifobmdjhlphmilfmemefedpkmhdnb |
公式URL | https://chromewebstore.google.com/detail/youtube-timeline/jjhifobmdjhlphmilfmemefedpkmhdnb |
説明 | Youtube comments on a timeline |
ファイルサイズ | 156 KB |
インストール数 | 72 |
現在のバージョン | 1.0.4 |
最終更新日 | 2023-01-09 |
公開日 | 2022-01-25 |
評価 | 3.00/5 合計 2 レビュー |
開発者 | Awesome Extensions |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Timeline", "version": "1.0.4", "action": { "default_icon": { "16": "assets\/icons\/16.png", "32": "assets\/icons\/32.png", "48": "assets\/icons\/48.png", "128": "assets\/icons\/128.png" }, "default_popup": "popup\/index.html", "default_title": "Youtube Timeline" }, "description": "Youtube comments on a timeline", "icons": { "16": "assets\/icons\/16.png", "32": "assets\/icons\/32.png", "48": "assets\/icons\/48.png", "128": "assets\/icons\/128.png" }, "author": "Ilya Zaytsev", "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "js": [ "content\/content-script.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "incognito": "not_allowed", "offline_enabled": false, "host_permissions": [ "https:\/\/youtube.com\/" ], "permissions": [ "storage", "tabs" ], "short_name": "YT Timeline" } |