RPi-youtube
This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing
Was ist RPi-youtube?
RPi-youtube ist eine Chrome-Erweiterung, die von kusti8 entwickelt wurde, und ihr Hauptmerkmal ist "This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing".
Erweiterungsscreenshots
RPi-youtube-Erweiterungs-CRX-Datei herunterladen
Laden Sie RPi-youtube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | laacchpjldmpbhkcjfmfcjijaekhhlgn |
| Offizielle URL | https://chromewebstore.google.com/detail/rpi-youtube/laacchpjldmpbhkcjfmfcjijaekhhlgn |
| Beschreibung | This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing |
| Dateigröße | 37.39 KB |
| Installationsanzahl | 1,347 |
| Aktuelle Version | 0.3 |
| Letztes Update | 2016-07-11 |
| Veröffentlichungsdatum | 2016-07-11 |
| Bewertung | 3.91/5 Insgesamt 11 Bewertungen |
| Entwickler | kusti8 |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | http://kusti8.github.io/RPi-chromium/ |
| Unterstützte Sprachen | 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"
}
} | |