RPi-youtube
This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing
Co to jest RPi-youtube?
RPi-youtube to rozszerzenie Chrome opracowane przez kusti8, a jego główną funkcją jest „This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia RPi-youtube
Pobierz pliki rozszerzeń RPi-youtube w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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! Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | laacchpjldmpbhkcjfmfcjijaekhhlgn |
| Oficjalny URL | https://chromewebstore.google.com/detail/rpi-youtube/laacchpjldmpbhkcjfmfcjijaekhhlgn |
| Opis | This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing |
| Rozmiar pliku | 37.39 KB |
| Liczba instalacji | 1,347 |
| Aktualna Wersja | 0.3 |
| Ostatnia Aktualizacja | 2016-07-11 |
| Data Publikacji | 2016-07-11 |
| Ocena | 3.91/5 Łącznie 11 Oceny |
| Deweloper | kusti8 |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | http://kusti8.github.io/RPi-chromium/ |
| Obsługiwane Języki | 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"
}
} | |