Webassembly Video Filter

Webassembly video filters

Webassembly Video Filterとは何ですか?

Webassembly Video Filterはhiroyagojoによって開発されたChromeの拡張機能で、その主な機能は「Webassembly video filters」です。

拡張機能のスクリーンショット

screenshot

Webassembly Video Filter拡張機能のCRXファイルをダウンロード

Webassembly Video Filter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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'"
}