RPi-youtube
This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing
ما هو RPi-youtube؟
RPi-youtube هو إضافة Chrome تم تطويرها بواسطة kusti8، والميزة الرئيسية لها هي "This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة RPi-youtube
قم بتنزيل ملفات الامتداد RPi-youtube بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a small script written to include a quick button to play any youtube video locally in omxplayer, allowing much smoother playback! It uses youtube-dl and displays a prompt each time a youtube video is opened. Pressing OK will show the video locally in less than 10 seconds. You must have Chromium installed (https://www.raspberrypi.org/forums/viewtopic.php?t=121195) and the host script installed (https://github.com/kusti8/RPi-chromium). Any questions or issues should be reported on the Github page, and I'm always open to new ideas! معلومات أساسية عن التمديد
| الاسم | |
| ID | laacchpjldmpbhkcjfmfcjijaekhhlgn |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/rpi-youtube/laacchpjldmpbhkcjfmfcjijaekhhlgn |
| الوصف | This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing |
| حجم الملف | 37.39 KB |
| عدد التثبيتات | 1,347 |
| النسخة الحالية | 0.3 |
| آخر تحديث | 2016-07-11 |
| تاريخ النشر | 2016-07-11 |
| تقييم | 3.91/5 مجموع تقييمات 11 |
| المطور | kusti8 |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | http://kusti8.github.io/RPi-chromium/ |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "RPi-youtube",
"description": "This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing",
"version": "0.3",
"browser_action": {
"default_icon": "icon_38.png",
"default_title": "Extract video!"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"tabs",
"nativeMessaging",
"http:\/\/*.youtube.com\/*",
"https:\/\/*.youtube.com\/*"
],
"icons": {
"48": "icon_48.png",
"128": "icon_128.png"
}
} | |