Time Viewer for YouTube Live
Chrome Extension for Viewing Time on YouTube Live.
Wat is Time Viewer for YouTube Live?
Time Viewer for YouTube Live is een Chrome-extensie ontwikkeld door https://fiahfy.blogspot.com, en de belangrijkste functie is "Chrome Extension for Viewing Time on YouTube Live.".
Extensie Screenshots
Download het CRX-bestand van de extensie Time Viewer for YouTube Live
Download Time Viewer for YouTube Live-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
- Display video publishing time. - Display time on seek bar and chat.
Basisinformatie over de Extensie
Naam | Time Viewer for YouTube Live |
ID | cnllmiliafeacdmlngaofjpjaljoolpc |
Officiële URL | https://chromewebstore.google.com/detail/time-viewer-for-youtube-l/cnllmiliafeacdmlngaofjpjaljoolpc |
Beschrijving | Chrome Extension for Viewing Time on YouTube Live. |
Bestandsgrootte | 25.52 KB |
Aantal Installaties | 249 |
Huidige Versie | 0.0.6 |
Laatst Bijgewerkt | 2023-01-01 |
Publicatiedatum | 2021-06-21 |
Beoordeling | 4.67/5 Totaal 3 Beoordelingen |
Ontwikkelaar | https://fiahfy.blogspot.com |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } |