Universal Now Playing Companion
Browser helper for the desktop application, Universal Now Playing
Wat is Universal Now Playing Companion?
Universal Now Playing Companion is een Chrome-extensie ontwikkeld door pendo324, en de belangrijkste functie is "Browser helper for the desktop application, Universal Now Playing".
Extensie Screenshots
Download het CRX-bestand van de extensie Universal Now Playing Companion
Download Universal Now Playing Companion-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
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
Basisinformatie over de Extensie
Naam | Universal Now Playing Companion |
ID | lljahlkpnhdopaegadghfjhhkcpdlijg |
Officiële URL | https://chromewebstore.google.com/detail/universal-now-playing-com/lljahlkpnhdopaegadghfjhhkcpdlijg |
Beschrijving | Browser helper for the desktop application, Universal Now Playing |
Bestandsgrootte | 9.03 KB |
Aantal Installaties | 806 |
Huidige Versie | 1.0.5 |
Laatst Bijgewerkt | 2020-05-18 |
Publicatiedatum | 2020-05-17 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | pendo324 |
Betalingswijze | free |
Extensiewebsite | https://github.com/pendo324/universal-np |
Ondersteunde Talen | 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 } } |