EME Call and Event Logger

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

EME Call and Event Logger là gì?

EME Call and Event Logger là một tiện ích mở rộng Chrome được phát triển bởi EME Logger Admins, và tính năng chính của nó là "Logs all Encrypted Media Extensions (EME) method calls and events.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng EME Call and Event Logger

Tải xuống các tệp mở rộng EME Call and Event Logger dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên EME Call and Event Logger EME Call and Event Logger
ID cniohcjecdcdhgmlofniddfoeokbpbpb
URL Chính Thức https://chromewebstore.google.com/detail/eme-call-and-event-logger/cniohcjecdcdhgmlofniddfoeokbpbpb
Mô tả Logs all Encrypted Media Extensions (EME) method calls and events.
Kích Thước Tệp 50.16 KB
Số Lần Cài Đặt 3,723
Phiên Bản Hiện Tại 3.4.0
Cập Nhật Lần Cuối 2023-07-06
Ngày Phát Hành 2018-10-10
Đánh Giá 4.48/5 Tổng số 23 Đánh Giá
Nhà Phát Triển EME Logger Admins
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/google/eme_logger
URL Trang Trợ Giúp https://github.com/google/eme_logger/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}