RPi-youtube
This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing
Qu'est-ce que RPi-youtube ?
RPi-youtube est une extension Chrome développée par kusti8, et sa fonction principale est "This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension RPi-youtube
Téléchargez les fichiers d'extension RPi-youtube au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | RPi-youtube |
ID | laacchpjldmpbhkcjfmfcjijaekhhlgn |
URL Officiel | https://chromewebstore.google.com/detail/rpi-youtube/laacchpjldmpbhkcjfmfcjijaekhhlgn |
Description | This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing |
Taille du Fichier | 37.39 KB |
Nombre d'Installations | 1,347 |
Version Actuelle | 0.3 |
Dernière Mise à Jour | 2016-07-11 |
Date de Publication | 2016-07-11 |
Évaluation | 3.91/5 Total 11 Évaluations |
Développeur | kusti8 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://kusti8.github.io/RPi-chromium/ |
Langues Prises en Charge | 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" } } |