Universal Now Playing Companion
Browser helper for the desktop application, Universal Now Playing
Was ist Universal Now Playing Companion?
Universal Now Playing Companion ist eine Chrome-Erweiterung, die von pendo324 entwickelt wurde, und ihr Hauptmerkmal ist "Browser helper for the desktop application, Universal Now Playing".
Erweiterungsscreenshots
Universal Now Playing Companion-Erweiterungs-CRX-Datei herunterladen
Laden Sie Universal Now Playing Companion-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Universal Now Playing is a desktop application that helps streamers share the music they are currently listening to with their stream viewers. It does this by updating a text file, that can then be used as an input source in OBS/Xsplit. This extension is used to get data from web pages (i.e. YouTube, Soundcloud, Web Spotify, etc.) and then send that data to the desktop client. You must have the desktop client open in order to make use of this extension. More information can be found on the GitHub page: https://github.com/pendo324/universal-np
Grundlegende Informationen zur Erweiterung
Name | Universal Now Playing Companion |
ID | lljahlkpnhdopaegadghfjhhkcpdlijg |
Offizielle URL | https://chromewebstore.google.com/detail/universal-now-playing-com/lljahlkpnhdopaegadghfjhhkcpdlijg |
Beschreibung | Browser helper for the desktop application, Universal Now Playing |
Dateigröße | 9.03 KB |
Installationsanzahl | 806 |
Aktuelle Version | 1.0.5 |
Letztes Update | 2020-05-18 |
Veröffentlichungsdatum | 2020-05-17 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | pendo324 |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/pendo324/universal-np |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Universal Now Playing Companion", "description": "Browser helper for the desktop application, Universal Now Playing", "version": "1.0.5", "icons": { "48": "icon.png" }, "permissions": [ "http:\/\/localhost:47565\/*", "https:\/\/www.mixcloud.com\/*", "https:\/\/www.pandora.com\/*", "https:\/\/play.google.com\/*", "https:\/\/open.spotify.com\/*", "https:\/\/soundcloud.com\/*", "https:\/\/tunein.com\/*", "https:\/\/www.youtube.com\/*", "https:\/\/www.deezer.com\/*", "https:\/\/app.plex.tv\/*", "https:\/\/hypem.com\/*", "https:\/\/listen.tidal.com\/*" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true } } |