RPi-youtube
This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing
Hvad er RPi-youtube?
RPi-youtube er en Chrome-udvidelse udviklet af kusti8, og dens hovedfunktion er "This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing".
Udvidelsesskærmbilleder
Download RPi-youtube-udvidelses-CRX-fil
Download RPi-youtube-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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!
Grundlæggende oplysninger om udvidelsen
Navn | RPi-youtube |
ID | laacchpjldmpbhkcjfmfcjijaekhhlgn |
Officiel URL | https://chromewebstore.google.com/detail/rpi-youtube/laacchpjldmpbhkcjfmfcjijaekhhlgn |
Beskrivelse | This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing |
Filstørrelse | 37.39 KB |
Antal Installationer | 1,347 |
Nuværende Version | 0.3 |
Senest Opdateret | 2016-07-11 |
Udgivelsesdato | 2016-07-11 |
Bedømmelse | 3.91/5 Samlet 11 Bedømmelser |
Udvikler | kusti8 |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://kusti8.github.io/RPi-chromium/ |
Understøttede Sprog | 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" } } |