Webassembly Video Filter
Webassembly video filters
Wat is Webassembly Video Filter?
Webassembly Video Filter is een Chrome-extensie ontwikkeld door hiroyagojo, en de belangrijkste functie is "Webassembly video filters".
Extensie Screenshots
Download het CRX-bestand van de extensie Webassembly Video Filter
Download Webassembly Video Filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Webassembly Video Filter |
ID | nmfkgbpnlhlfbdfhfdnjagpdofghmmam |
Officiële URL | https://chromewebstore.google.com/detail/webassembly-video-filter/nmfkgbpnlhlfbdfhfdnjagpdofghmmam |
Beschrijving | Webassembly video filters |
Bestandsgrootte | 141 KB |
Aantal Installaties | 113 |
Huidige Versie | 1.2.2 |
Laatst Bijgewerkt | 2021-06-02 |
Publicatiedatum | 2021-05-17 |
Ontwikkelaar | hiroyagojo |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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'" } |