EME Call and Event Logger

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

Qu'est-ce que EME Call and Event Logger ?

EME Call and Event Logger est une extension Chrome développée par EME Logger Admins, et sa fonction principale est "Logs all Encrypted Media Extensions (EME) method calls and events.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension EME Call and Event Logger

Téléchargez les fichiers d'extension EME Call and Event Logger au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom EME Call and Event Logger EME Call and Event Logger
ID cniohcjecdcdhgmlofniddfoeokbpbpb
URL Officiel https://chromewebstore.google.com/detail/eme-call-and-event-logger/cniohcjecdcdhgmlofniddfoeokbpbpb
Description Logs all Encrypted Media Extensions (EME) method calls and events.
Taille du Fichier 50.16 KB
Nombre d'Installations 3,723
Version Actuelle 3.4.0
Dernière Mise à Jour 2023-07-06
Date de Publication 2018-10-10
Évaluation 4.48/5 Total 23 Évaluations
Développeur EME Logger Admins
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/google/eme_logger
URL de la Page d'Aide https://github.com/google/eme_logger/issues
Langues Prises en Charge 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"
    ]
}