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 |
官方網址 | 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" } |