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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
    ]
}