Time Viewer for YouTube Live
Chrome Extension for Viewing Time on YouTube Live.
Vad är Time Viewer for YouTube Live?
Time Viewer for YouTube Live är en Chrome-tillägg utvecklad av https://fiahfy.blogspot.com, och dess huvudfunktion är "Chrome Extension for Viewing Time on YouTube Live.".
Tilläggsskärmbilder
Ladda ner Time Viewer for YouTube Live-förlängningens CRX-fil
Ladda ner Time Viewer for YouTube Live-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
- Display video publishing time. - Display time on seek bar and chat.
Grundläggande Information om Tillägg
Namn | Time Viewer for YouTube Live |
ID | cnllmiliafeacdmlngaofjpjaljoolpc |
Officiell webbadress | https://chromewebstore.google.com/detail/time-viewer-for-youtube-l/cnllmiliafeacdmlngaofjpjaljoolpc |
Beskrivning | Chrome Extension for Viewing Time on YouTube Live. |
Filstorlek | 25.52 KB |
Antal Installationer | 249 |
Aktuell Version | 0.0.6 |
Senast Uppdaterad | 2023-01-01 |
Publiceringsdatum | 2021-06-21 |
Betyg | 4.67/5 Totalt 3 Betyg |
Utvecklare | https://fiahfy.blogspot.com |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } |