Video Recorder
This extension can toggle video picture-in-picture, take video screenshot or record video element such as broadcast.
ما هو Video Recorder؟
Video Recorder هو إضافة Chrome تم تطويرها بواسطة ZmySeries، والميزة الرئيسية لها هي "This extension can toggle video picture-in-picture, take video screenshot or record video element such as broadcast.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Video Recorder
قم بتنزيل ملفات الامتداد Video Recorder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Toggle Picture-in-Picture(PiP), take screenshot or even record on video element. --- version 0.8 - add prefix "video-recorder-" to filename for future sort and search --- version 0.7 - fix browser freeze when frequently capture - more friendly file name - fix video don't start record - transcode video to aac audio and mp4 format after record
معلومات أساسية عن التمديد
الاسم | Video Recorder |
ID | hpepmnkdgcikbgfimpagndobgjpjcfcc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/video-recorder/hpepmnkdgcikbgfimpagndobgjpjcfcc |
الوصف | This extension can toggle video picture-in-picture, take video screenshot or record video element such as broadcast. |
حجم الملف | 8.59 MB |
عدد التثبيتات | 26 |
النسخة الحالية | 0.8 |
آخر تحديث | 2022-06-23 |
تاريخ النشر | 2021-12-02 |
المطور | ZmySeries |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Video Recorder", "version": "0.8", "description": "This extension can toggle video picture-in-picture, take video screenshot or record video element such as broadcast.", "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "downloads" ], "cross_origin_embedder_policy": { "value": "require-corp" }, "cross_origin_opener_policy": { "value": "same-origin" }, "web_accessible_resources": [ "libs\/ffmpeg-wasm\/ffmpeg-core.js", "libs\/ffmpeg-wasm\/ffmpeg-core.wasm", "libs\/ffmpeg-wasm\/ffmpeg-core.worker.js" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "background": { "scripts": [ "libs\/ffmpeg-wasm\/ffmpeg.min.js", "libs\/ffmpeg-wasm\/ffmpeg-core.js", "background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' blob: 'unsafe-eval'; object-src 'self'" } |