Time Viewer for YouTube Live

Chrome Extension for Viewing Time on YouTube Live.

ما هو Time Viewer for YouTube Live؟

Time Viewer for YouTube Live هو إضافة Chrome تم تطويرها بواسطة https://fiahfy.blogspot.com، والميزة الرئيسية لها هي "Chrome Extension for Viewing Time on YouTube Live.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Time Viewer for YouTube Live

قم بتنزيل ملفات الامتداد Time Viewer for YouTube Live بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Time Viewer for YouTube Live Time Viewer for YouTube Live
ID cnllmiliafeacdmlngaofjpjaljoolpc
عنوان URL الرسمي 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"
}