EME Call and Event Logger

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

O que é EME Call and Event Logger?

EME Call and Event Logger é uma extensão do Chrome desenvolvida por EME Logger Admins, e sua principal característica é "Logs all Encrypted Media Extensions (EME) method calls and events.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão EME Call and Event Logger

Baixe arquivos de extensão EME Call and Event Logger no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome EME Call and Event Logger EME Call and Event Logger
ID cniohcjecdcdhgmlofniddfoeokbpbpb
URL Oficial https://chromewebstore.google.com/detail/eme-call-and-event-logger/cniohcjecdcdhgmlofniddfoeokbpbpb
Descrição Logs all Encrypted Media Extensions (EME) method calls and events.
Tamanho do Arquivo 50.16 KB
Contagem de Instalações 3,723
Versão Atual 3.4.0
Última Atualização 2023-07-06
Data de Publicação 2018-10-10
Classificação 4.48/5 Total de 23 Avaliações
Desenvolvedor EME Logger Admins
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/google/eme_logger
URL da Página de Ajuda https://github.com/google/eme_logger/issues
Idiomas Suportados 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"
    ]
}