Video picture in picture
Video picture in picture
ما هو Video picture in picture؟
Video picture in picture هو إضافة Chrome تم تطويرها بواسطة Oscar de Dios، والميزة الرئيسية لها هي "Video picture in picture".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Video picture in picture
قم بتنزيل ملفات الامتداد Video picture in picture بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Chrome extension to open the video of the active page to picture in picture mode. It will open a litle window "always on top", it will be possible to use the computer in other windows while you watch the video with the video always visible. The code is in: https://github.com/OscarDeDios/pictureInPictureExtension The extension uses the new picture in picture API: https://wicg.github.io/picture-in-picture/
معلومات أساسية عن التمديد
الاسم | Video picture in picture |
ID | bfncjmnhlgddppdmogacohjjieiahelp |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/video-picture-in-picture/bfncjmnhlgddppdmogacohjjieiahelp |
الوصف | Video picture in picture |
حجم الملف | 5.87 KB |
عدد التثبيتات | 578 |
النسخة الحالية | 1.1 |
آخر تحديث | 2019-03-21 |
تاريخ النشر | 2019-03-16 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Oscar de Dios |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://www.noteboardapp.com/policy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video picture in picture", "manifest_version": 2, "version": "1.1", "short_name": "Video picture in picture", "icons": { "48": "img\/pipVideo.png", "128": "img\/pipVideo128.png" }, "browser_action": { "default_title": "__MSG_extName__", "default_icon": { "19": "img\/pipVideo.png" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "description": "Video picture in picture", "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ] } |