EME Call and Event Logger

Logs all Encrypted Media Extensions (EME) method calls and events.

ما هو EME Call and Event Logger؟

EME Call and Event Logger هو إضافة Chrome تم تطويرها بواسطة EME Logger Admins، والميزة الرئيسية لها هي "Logs all Encrypted Media Extensions (EME) method calls and events.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة EME Call and Event Logger

قم بتنزيل ملفات الامتداد EME Call and Event Logger بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Logs Encrypted Media Extension (EME) events and calls to help investigate issues in premium media sites.

The source code is available at https://github.com/google/eme_logger.

By installing this item, you agree to the Google Terms of Service and Privacy Policy at https://www.google.com/intl/en/policies/.                    

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

الاسم EME Call and Event Logger EME Call and Event Logger
ID cniohcjecdcdhgmlofniddfoeokbpbpb
عنوان URL الرسمي https://chromewebstore.google.com/detail/eme-call-and-event-logger/cniohcjecdcdhgmlofniddfoeokbpbpb
الوصف Logs all Encrypted Media Extensions (EME) method calls and events.
حجم الملف 50.16 KB
عدد التثبيتات 3,723
النسخة الحالية 3.4.0
آخر تحديث 2023-07-06
تاريخ النشر 2018-10-10
تقييم 4.48/5 مجموع تقييمات 23
المطور EME Logger Admins
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/google/eme_logger
عنوان صفحة المساعدة https://github.com/google/eme_logger/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EME Call and Event Logger",
    "short_name": "EME Logger",
    "version": "3.4.0",
    "manifest_version": 3,
    "description": "Logs all Encrypted Media Extensions (EME) method calls and events.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "icons": {
        "22": "icons\/EME_logo_22.png",
        "32": "icons\/EME_logo_32.png",
        "48": "icons\/EME_logo_48.png",
        "96": "icons\/EME_logo_96.png",
        "128": "icons\/EME_logo_128.png"
    },
    "background": {
        "service_worker": "service-worker.js",
        "type": "module"
    },
    "action": {
        "default_title": "EME Logger"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "trace-anything.js",
                "eme-trace-config.js"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "permissions": [
        "downloads"
    ]
}