Time Viewer for YouTube Live
Chrome Extension for Viewing Time on YouTube Live.
什么是Time Viewer for YouTube Live?
Time Viewer for YouTube Live是由https://fiahfy.blogspot.com开发的Chrome扩展程序,该扩展的主要功能是“Chrome Extension for Viewing Time on YouTube Live.”。
扩展截图
下载Time Viewer for YouTube Live扩展crx文件
下载Time Viewer for YouTube Live扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
- Display video publishing time. - Display time on seek bar and chat.
扩展基本信息
名称 | Time Viewer for YouTube Live |
ID | cnllmiliafeacdmlngaofjpjaljoolpc |
官方URL | https://chromewebstore.google.com/detail/time-viewer-for-youtube-l/cnllmiliafeacdmlngaofjpjaljoolpc |
简介 | Chrome Extension for Viewing Time on YouTube Live. |
文件大小 | 25.52 KB |
安装次数 | 249 |
当前版本 | 0.0.6 |
更新时间 | 2023-01-01 |
上架时间 | 2021-06-21 |
评分 | 4.67/5 共3次评分 |
开发者 | https://fiahfy.blogspot.com |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "128": "icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": false, "js": [ "content-script.js" ], "css": [ "content-script.css" ] }, { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/live_chat_replay*" ], "all_frames": true, "js": [ "content-script-frame.js" ], "css": [ "content-script-frame.css" ] } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "name": "Time Viewer for YouTube Live", "description": "Chrome Extension for Viewing Time on YouTube Live.", "version": "0.0.6" } |