Webassembly Video Filter
Webassembly video filters
什么是Webassembly Video Filter?
Webassembly Video Filter是由hiroyagojo开发的Chrome扩展程序,该扩展的主要功能是“Webassembly video filters”。
扩展截图
下载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 |
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'" } |