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
官方網址 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'"
}