Webassembly Video Filter

Webassembly video filters

Webassembly Video Filter란 무엇입니까?

Webassembly Video Filter은(는) hiroyagojo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Webassembly video filters"입니다.

확장 프로그램 스크린샷

screenshot

Webassembly Video Filter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Video filters for video hosting sites such as YouTube and Vimeo using WebAssembly technology. Analyze color information for videos straight from the browser using a simple popup that displays various scopes such as Lumascope, Vectorscope, and more! No need to download the video or install heavy video scope software anymore, since you can do it straight from the browser.                    

확장 프로그램 기본 정보

이름 Webassembly Video Filter Webassembly Video Filter
ID nmfkgbpnlhlfbdfhfdnjagpdofghmmam
공식 URL https://chromewebstore.google.com/detail/webassembly-video-filter/nmfkgbpnlhlfbdfhfdnjagpdofghmmam
설명 Webassembly video filters
파일 크기 141 KB
설치 횟수 113
현재 버전 1.2.2
최근 업데이트 2021-06-02
출시 날짜 2021-05-17
개발자 hiroyagojo
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Webassembly Video Filter",
    "version": "1.2.2",
    "description": "Webassembly video filters",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/vimeo.com\/*"
            ],
            "all_frames": true,
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "web_accessible_resources": [
        "zmo.wasm"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'"
}