YouTube Timed Comments
Show comments with timestamps
YouTube Timed Commentsとは何ですか?
YouTube Timed Commentsはlerxstによって開発されたChromeの拡張機能で、その主な機能は「Show comments with timestamps」です。
拡張機能のスクリーンショット
YouTube Timed Comments拡張機能のCRXファイルをダウンロード
YouTube Timed Comments拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
See comments that have timestamps, show up at the appropriate time. Note: Only comments that have loaded on the page will show up.
拡張機能の基本情報
名前 | |
ID | mfmjnhncafdcdegeiamnjpnjgmmkkaal |
公式URL | https://chrome.google.com/webstore/detail/youtube-timed-comments/mfmjnhncafdcdegeiamnjpnjgmmkkaal |
説明 | Show comments with timestamps |
ファイルサイズ | 96.02 KB |
インストール数 | 159 |
現在のバージョン | 0.0.0.1 |
最終更新日 | 2019-09-03 |
公開日 | 2019-09-03 |
評価 | 3.33/5 合計 3 レビュー |
開発者 | lerxst |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Timed Comments", "description": "Show comments with timestamps", "version": "0.0.0.1", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "third-party-scripts\/jquery-3.3.1.js", "third-party-scripts\/arrive.min.js", "third-party-scripts\/clamp.min.js", "content-script.js" ] } ], "permissions": [ "contextMenus", "webNavigation", "tabs" ], "background": { "scripts": [ "event-page.js" ], "persistent": false }, "web_accessible_resources": [ "third-party-scripts\/jquery-3.3.1.js", "third-party-scripts\/mustache.min.js", "third-party-scripts\/arrive.min.js", "third-party-scripts\/clamp.min.js", "page-script.js" ], "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "192": "icons\/icon-192.png" } } |