RPi-youtube
This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing
什么是RPi-youtube?
RPi-youtube是由kusti8开发的Chrome扩展程序,该扩展的主要功能是“This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing”。
扩展截图
下载RPi-youtube扩展crx文件
下载RPi-youtube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | RPi-youtube |
ID | laacchpjldmpbhkcjfmfcjijaekhhlgn |
官方URL | https://chromewebstore.google.com/detail/rpi-youtube/laacchpjldmpbhkcjfmfcjijaekhhlgn |
简介 | This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing |
文件大小 | 37.39 KB |
安装次数 | 1,347 |
当前版本 | 0.3 |
更新时间 | 2016-07-11 |
上架时间 | 2016-07-11 |
评分 | 3.91/5 共11次评分 |
开发者 | kusti8 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://kusti8.github.io/RPi-chromium/ |
支持的语言 | 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" } } |