Webassembly Video Filter
Webassembly video filters
ما هو Webassembly Video Filter؟
Webassembly Video Filter هو إضافة Chrome تم تطويرها بواسطة hiroyagojo، والميزة الرئيسية لها هي "Webassembly video filters".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Webassembly Video Filter
قم بتنزيل ملفات الامتداد Webassembly Video Filter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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'" } |