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 |
Eメール | [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" } } |