RPi-youtube
This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing
Wat is RPi-youtube?
RPi-youtube is een Chrome-extensie ontwikkeld door kusti8, en de belangrijkste functie is "This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing".
Extensie Screenshots
Download het CRX-bestand van de extensie RPi-youtube
Download RPi-youtube-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | RPi-youtube |
ID | laacchpjldmpbhkcjfmfcjijaekhhlgn |
Officiële URL | https://chromewebstore.google.com/detail/rpi-youtube/laacchpjldmpbhkcjfmfcjijaekhhlgn |
Beschrijving | This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing |
Bestandsgrootte | 37.39 KB |
Aantal Installaties | 1,347 |
Huidige Versie | 0.3 |
Laatst Bijgewerkt | 2016-07-11 |
Publicatiedatum | 2016-07-11 |
Beoordeling | 3.91/5 Totaal 11 Beoordelingen |
Ontwikkelaar | kusti8 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://kusti8.github.io/RPi-chromium/ |
Ondersteunde Talen | 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" } } |