RPi-youtube

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

Cos'è RPi-youtube?

RPi-youtube è un'estensione di Chrome sviluppata da kusti8, e la sua funzione principale è "This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione RPi-youtube

Scarica i file di estensione RPi-youtube in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome RPi-youtube RPi-youtube
ID laacchpjldmpbhkcjfmfcjijaekhhlgn
URL Ufficiale https://chromewebstore.google.com/detail/rpi-youtube/laacchpjldmpbhkcjfmfcjijaekhhlgn
Descrizione This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing
Dimensione del File 37.39 KB
Conteggio Installazioni 1,347
Versione Corrente 0.3
Ultimo Aggiornamento 2016-07-11
Data di Pubblicazione 2016-07-11
Valutazione 3.91/5 Totale 11 Valutazioni
Sviluppatore kusti8
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://kusti8.github.io/RPi-chromium/
Lingue Supportate 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"
    }
}