Inline HLS Player
Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)
ما هو Inline HLS Player؟
Inline HLS Player هو إضافة Chrome تم تطويرها بواسطة Alexey Tsikov، والميزة الرئيسية لها هي "Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Inline HLS Player
قم بتنزيل ملفات الامتداد Inline HLS Player بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows to watch HLS videos (designed for mobile phones) right inside desktop browser. Hls.js library is used to support playback. No need to open video urls in separate tab or window. Inline HLS Player will detect if video tryes to load HLS and will handle it.
معلومات أساسية عن التمديد
الاسم | Inline HLS Player |
ID | geecgiclhemdbkmmbflfdophmppjjial |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/inline-hls-player/geecgiclhemdbkmmbflfdophmppjjial |
الوصف | Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/) |
حجم الملف | 7.68 KB |
عدد التثبيتات | 7,092 |
النسخة الحالية | 0.1.1 |
آخر تحديث | 2017-12-08 |
تاريخ النشر | 2017-12-08 |
تقييم | 3.55/5 مجموع تقييمات 11 |
المطور | Alexey Tsikov |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Inline HLS Player", "short_name": "Inline HLS", "description": "Extension allows browser to play HLS videos inside webpage using hls.js library (https:\/\/github.com\/video-dev\/hls.js\/)", "version": "0.1.1", "icons": { "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "detectHlsVideo.js" ], "all_frames": true } ], "web_accessible_resources": [ "injectHlsJs.js" ] } |