Webassembly Video Filter
Webassembly video filters
Co to jest Webassembly Video Filter?
Webassembly Video Filter to rozszerzenie Chrome opracowane przez hiroyagojo, a jego główną funkcją jest „Webassembly video filters”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Webassembly Video Filter
Pobierz pliki rozszerzeń Webassembly Video Filter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Webassembly Video Filter |
ID | nmfkgbpnlhlfbdfhfdnjagpdofghmmam |
Oficjalny URL | https://chromewebstore.google.com/detail/webassembly-video-filter/nmfkgbpnlhlfbdfhfdnjagpdofghmmam |
Opis | Webassembly video filters |
Rozmiar pliku | 141 KB |
Liczba instalacji | 113 |
Aktualna Wersja | 1.2.2 |
Ostatnia Aktualizacja | 2021-06-02 |
Data Publikacji | 2021-05-17 |
Deweloper | hiroyagojo |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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'" } |