Time Viewer for YouTube Live
Chrome Extension for Viewing Time on YouTube Live.
Was ist Time Viewer for YouTube Live?
Time Viewer for YouTube Live ist eine Chrome-Erweiterung, die von https://fiahfy.blogspot.com entwickelt wurde, und ihr Hauptmerkmal ist "Chrome Extension for Viewing Time on YouTube Live.".
Erweiterungsscreenshots
Time Viewer for YouTube Live-Erweiterungs-CRX-Datei herunterladen
Laden Sie Time Viewer for YouTube Live-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
- Display video publishing time. - Display time on seek bar and chat.
Grundlegende Informationen zur Erweiterung
Name | Time Viewer for YouTube Live |
ID | cnllmiliafeacdmlngaofjpjaljoolpc |
Offizielle URL | https://chromewebstore.google.com/detail/time-viewer-for-youtube-l/cnllmiliafeacdmlngaofjpjaljoolpc |
Beschreibung | Chrome Extension for Viewing Time on YouTube Live. |
Dateigröße | 25.52 KB |
Installationsanzahl | 249 |
Aktuelle Version | 0.0.6 |
Letztes Update | 2023-01-01 |
Veröffentlichungsdatum | 2021-06-21 |
Bewertung | 4.67/5 Insgesamt 3 Bewertungen |
Entwickler | https://fiahfy.blogspot.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } |