Timestamped YouTube Comments
Allows users to see timestamped comments as they watch YouTube
什麼是Timestamped YouTube Comments?
Timestamped YouTube Comments是由kenny開發的Chrome擴展程式,該擴展的主要功能是“Allows users to see timestamped comments as they watch YouTube”。
擴展截圖
下載Timestamped YouTube Comments擴展crx文件
下載Timestamped YouTube Comments擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Features: - Pause to persist a comment - Hover over a comment to see its replies - Click the Comments icon in the video bar to toggle comments on/off - Click on a comment to open a new tab with that comment at the top of the comment section (useful for replying to comments) - Use your own YouTube Data API key (pin the extension to your toolbar and open the popup to access) 9/30/23 update: You must now create and enter your own YouTube Data API key. The extension will default to use my key but YouTube has cut down my quota drastically so the extension will probably not work if you don't use your own :( Contact support at [email protected] or leave a review if you like it!
擴展基本資訊
名稱 | Timestamped YouTube Comments |
ID | gnpppldhfbbagiaalkddddajadhlgofm |
官方網址 | https://chromewebstore.google.com/detail/timestamped-youtube-comme/gnpppldhfbbagiaalkddddajadhlgofm |
簡介 | Allows users to see timestamped comments as they watch YouTube |
檔案大小 | 884 KB |
安裝次數 | 2,313 |
目前版本 | 1.23.0 |
更新時間 | 2023-10-01 |
上架時間 | 2020-02-06 |
評分 | 4.27/5 共 75 次評分 |
開發者 | kenny |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "short_name": "Timestamped YouTube Comments", "name": "Timestamped YouTube Comments", "manifest_version": 3, "action": { "default_title": "Timestamped YouTube Comments", "default_popup": "popup.html" }, "description": "Allows users to see timestamped comments as they watch YouTube", "version": "1.23.0", "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch*" ], "js": [ "\/static\/js\/main.js" ], "css": [ "\/static\/css\/main.css" ] } ], "background": { "service_worker": "background.js", "type": "module" }, "icons": { "16": "chat16.png", "32": "chat32.png", "48": "chat512.png", "128": "chat128.png" }, "web_accessible_resources": [ { "resources": [ "*.svg", "*.png", "*.wav" ], "matches": [ "https:\/\/*\/*" ] } ] } |