Time Viewer for YouTube Live

Chrome Extension for Viewing Time on YouTube Live.

Co to jest Time Viewer for YouTube Live?

Time Viewer for YouTube Live to rozszerzenie Chrome opracowane przez https://fiahfy.blogspot.com, a jego główną funkcją jest „Chrome Extension for Viewing Time on YouTube Live.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Time Viewer for YouTube Live

Pobierz pliki rozszerzeń Time Viewer for YouTube Live w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        - Display video publishing time.
- Display time on seek bar and chat.                    

Podstawowe informacje o rozszerzeniu

Nazwa Time Viewer for YouTube Live Time Viewer for YouTube Live
ID cnllmiliafeacdmlngaofjpjaljoolpc
Oficjalny URL https://chromewebstore.google.com/detail/time-viewer-for-youtube-l/cnllmiliafeacdmlngaofjpjaljoolpc
Opis Chrome Extension for Viewing Time on YouTube Live.
Rozmiar pliku 25.52 KB
Liczba instalacji 249
Aktualna Wersja 0.0.6
Ostatnia Aktualizacja 2023-01-01
Data Publikacji 2021-06-21
Ocena 4.67/5 Łącznie 3 Oceny
Deweloper https://fiahfy.blogspot.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
}