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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Logs all Encrypted Media Extensions (EME) method calls and events."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में EME Call and Event Logger एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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