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是由EME Logger Admins开发的Chrome扩展程序,该扩展的主要功能是“Logs all Encrypted Media Extensions (EME) method calls and events.”。

扩展截图

screenshot
screenshot

下载EME Call and Event Logger扩展crx文件

下载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"
    ]
}