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 |
官方網址 | 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 |
電子郵箱 | [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" } } |