AutoPi
Pushes YouTube videos to Kodi.
Cos'è AutoPi?
AutoPi è un'estensione di Chrome sviluppata da devhl, e la sua funzione principale è "Pushes YouTube videos to Kodi.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AutoPi
Scarica i file di estensione AutoPi 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
Pushes YouTube videos to your Raspberry Pi automatically. To use this, just enter your Raspberry Pi's IP address and port (probably 80), check enabled, click save, and then navigate to a YouTube video. It will get pushed to your Pi automatically. This was tested on a Raspberry Pi 4 running LibreElec. v1.0.0 - fix to keep working with a playlist v0.2.0.1 - changed get request to post requests to match changes in the api v0.2.0.0 - added Chrome and XBMC notifications v0.1.0.0 - first release
Informazioni di Base sull'Estensione
Nome | AutoPi |
ID | jlfjghdgdpbjgnaecdmbkdgmbhbfagmh |
URL Ufficiale | https://chromewebstore.google.com/detail/autopi/jlfjghdgdpbjgnaecdmbkdgmbhbfagmh |
Descrizione | Pushes YouTube videos to Kodi. |
Dimensione del File | 25.25 KB |
Conteggio Installazioni | 19 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2022-11-09 |
Data di Pubblicazione | 2020-05-24 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | devhl |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/devhl-labs/Chrome.AutoPi |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AutoPi", "version": "1.0.0", "description": "Pushes YouTube videos to Kodi.", "background": { "scripts": [ "src\/background.js" ] }, "browser_action": { "default_title": "Auto Pi", "default_popup": "src\/popup.html", "default_icon": { "19": "src\/images\/APi19.png" } }, "permissions": [ "http:\/\/*\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "src\/contentscript.js" ], "run_at": "document_start", "all_frames": false } ], "manifest_version": 2, "icons": { "128": "src\/images\/APi128.png", "48": "src\/images\/APi48.png", "16": "src\/images\/APi16.png" } } |