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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}