RPi-youtube
This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing
Apa itu RPi-youtube?
RPi-youtube adalah ekstensi Chrome yang dikembangkan oleh kusti8, dan fitur utamanya adalah "This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi RPi-youtube
Unduh file ekstensi RPi-youtube dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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! Informasi Dasar Ekstensi
| Nama | |
| ID | laacchpjldmpbhkcjfmfcjijaekhhlgn |
| URL Resmi | https://chromewebstore.google.com/detail/rpi-youtube/laacchpjldmpbhkcjfmfcjijaekhhlgn |
| Deskripsi | This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing |
| Ukuran File | 37.39 KB |
| Jumlah Instalasi | 1,347 |
| Versi Saat Ini | 0.3 |
| Terakhir Diperbarui | 2016-07-11 |
| Tanggal Publikasi | 2016-07-11 |
| Penilaian | 3.91/5 Total 11 Penilaian |
| Pengembang | kusti8 |
| [email protected] | |
| Tipe Pembayaran | free |
| Situs Ekstensi | http://kusti8.github.io/RPi-chromium/ |
| Bahasa yang Didukung | 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"
}
} | |