Universal Now Playing Companion
Browser helper for the desktop application, Universal Now Playing
Universal Now Playing Companionとは何ですか?
Universal Now Playing Companionはpendo324によって開発されたChromeの拡張機能で、その主な機能は「Browser helper for the desktop application, Universal Now Playing」です。
拡張機能のスクリーンショット
Universal Now Playing Companion拡張機能のCRXファイルをダウンロード
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 } } |