Universal Now Playing Companion
Browser helper for the desktop application, Universal Now Playing
Τι είναι το Universal Now Playing Companion;
Το Universal Now Playing Companion είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον pendo324, και η κύρια λειτουργία του είναι "Browser helper for the desktop application, Universal Now Playing".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Universal Now Playing Companion
Λήψη αρχείων επέκτασης Universal Now Playing Companion σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Universal Now Playing Companion |
ID | lljahlkpnhdopaegadghfjhhkcpdlijg |
Επίσημο URL | https://chromewebstore.google.com/detail/universal-now-playing-com/lljahlkpnhdopaegadghfjhhkcpdlijg |
Περιγραφή | Browser helper for the desktop application, Universal Now Playing |
Μέγεθος Αρχείου | 9.03 KB |
Αριθμός Εγκαταστάσεων | 806 |
Τρέχουσα Έκδοση | 1.0.5 |
Τελευταία Ενημέρωση | 2020-05-18 |
Ημερομηνία Δημοσίευσης | 2020-05-17 |
Αξιολόγηση | 3.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | pendo324 |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/pendo324/universal-np |
Υποστηριζόμενες Γλώσσες | 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 } } |