Now Playing - OBS
Client for OBS now playing widget
Wat is Now Playing - OBS?
Now Playing - OBS is een Chrome-extensie ontwikkeld door https://www.playingnow.de, en de belangrijkste functie is "Client for OBS now playing widget".
Extensie Screenshots
Download het CRX-bestand van de extensie Now Playing - OBS
Download Now Playing - OBS-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Now Playing - OBS |
ID | ggkicimibhpmfkoepnlbbdomnkfkmcie |
Officiële URL | https://chromewebstore.google.com/detail/now-playing-obs/ggkicimibhpmfkoepnlbbdomnkfkmcie |
Beschrijving | Client for OBS now playing widget |
Bestandsgrootte | 42.77 KB |
Aantal Installaties | 90 |
Huidige Versie | 1.2.4 |
Laatst Bijgewerkt | 2024-02-20 |
Publicatiedatum | 2023-08-25 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://www.playingnow.de |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.playingnow.de/ |
URL van de Privacybeleid Pagina | https://tizhproger.github.io/privacy_policy |
Ondersteunde Talen | 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" } } |