Webassembly Video Filter

Webassembly video filters

Webassembly Video Filterคืออะไร?

Webassembly Video Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hiroyagojo และคุณลักษณะหลักของมันคือ "Webassembly video filters"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Webassembly Video Filter

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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'"
}