YouTube Timed Comments
Show comments with timestamps
What is YouTube Timed Comments?
YouTube Timed Comments is a Chrome extension developed by lerxst, and its main feature is "Show comments with timestamps".
Extension Screenshots
Download YouTube Timed Comments Extension CRX File
Download YouTube Timed Comments 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
See comments that have timestamps, show up at the appropriate time. Note: Only comments that have loaded on the page will show up.
Extension Basic Information
Name | |
ID | mfmjnhncafdcdegeiamnjpnjgmmkkaal |
Official URL | https://chrome.google.com/webstore/detail/youtube-timed-comments/mfmjnhncafdcdegeiamnjpnjgmmkkaal |
Description | Show comments with timestamps |
File Size | 96.02 KB |
Installation Count | 159 |
Current Version | 0.0.0.1 |
Last Updated | 2019-09-03 |
Publish Date | 2019-09-03 |
Rating | 3.33/5 Total 3 Ratings |
Developer | lerxst |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |