RPi-youtube

This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing

O que é RPi-youtube?

RPi-youtube é uma extensão do Chrome desenvolvida por kusti8, e sua principal característica é "This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão RPi-youtube

Baixe arquivos de extensão RPi-youtube no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome RPi-youtube RPi-youtube
ID laacchpjldmpbhkcjfmfcjijaekhhlgn
URL Oficial https://chromewebstore.google.com/detail/rpi-youtube/laacchpjldmpbhkcjfmfcjijaekhhlgn
Descrição This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing
Tamanho do Arquivo 37.39 KB
Contagem de Instalações 1,347
Versão Atual 0.3
Última Atualização 2016-07-11
Data de Publicação 2016-07-11
Classificação 3.91/5 Total de 11 Avaliações
Desenvolvedor kusti8
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://kusti8.github.io/RPi-chromium/
Idiomas Suportados 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"
    }
}