RPi-youtube
This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing
Что такое RPi-youtube?
RPi-youtube - это расширение Chrome, разработанное kusti8, и его основная функция - "This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing".
Снимки экрана расширения
Скачать файл CRX расширения RPi-youtube
Скачайте файлы расширений 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" } } |