Webassembly Video Filter

Webassembly video filters

Webassembly Video Filter क्या है?

Webassembly Video Filter hiroyagojo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Webassembly video filters"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Webassembly Video Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}