Now Playing - OBS
Client for OBS now playing widget
Cos'è Now Playing - OBS?
Now Playing - OBS è un'estensione di Chrome sviluppata da https://www.playingnow.de, e la sua funzione principale è "Client for OBS now playing widget".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Now Playing - OBS
Scarica i file di estensione Now Playing - OBS 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 extension is a part for OBS now playing widget, which is used to display songs names and its duration from soundcloud.com, youtube.com, music.youtube.com and open.spotify.com services in OBS. All the files are publically availible as well as the installation tutorial, by the following repo: https://gitlab.com/tizhproger/now-playing-obs You can view the code and run it by yourself, wihtout this particaular extension only using Chrome developer settings. This extension doesn't store your data locally or via Chrome API tools. It only uses songs titles, duration and playing states, working with the content on the page. No account data are saved, transferred outside of your PC. All data are transmitted on localhost address to server application, which sends it to OBS locally.
Informazioni di Base sull'Estensione
Nome | Now Playing - OBS |
ID | ggkicimibhpmfkoepnlbbdomnkfkmcie |
URL Ufficiale | https://chromewebstore.google.com/detail/now-playing-obs/ggkicimibhpmfkoepnlbbdomnkfkmcie |
Descrizione | Client for OBS now playing widget |
Dimensione del File | 42.77 KB |
Conteggio Installazioni | 90 |
Versione Corrente | 1.2.4 |
Ultimo Aggiornamento | 2024-02-20 |
Data di Pubblicazione | 2023-08-25 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://www.playingnow.de |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.playingnow.de/ |
URL della Pagina della Politica sulla Privacy | https://tizhproger.github.io/privacy_policy |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Now Playing - OBS", "version": "1.2.4", "description": "Client for OBS now playing widget", "manifest_version": 3, "author": "Tizhproger inspired by Tuna", "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "https:\/\/*.spotify.com\/*", "https:\/\/*.soundcloud.com\/*" ], "js": [ "nowplaying_client.js" ] } ], "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "64": "64.png", "128": "128.png" } } |