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! 擴展基本資訊
| 名稱 | |
| ID | laacchpjldmpbhkcjfmfcjijaekhhlgn |
| 官方網址 | 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"
}
} | |