Now Playing - OBS
Client for OBS now playing widget
什么是Now Playing - OBS?
Now Playing - OBS是由https://www.playingnow.de开发的Chrome扩展程序,该扩展的主要功能是“Client for OBS now playing widget”。
扩展截图
下载Now Playing - OBS扩展crx文件
下载Now Playing - OBS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Now Playing - OBS |
ID | ggkicimibhpmfkoepnlbbdomnkfkmcie |
官方URL | https://chromewebstore.google.com/detail/now-playing-obs/ggkicimibhpmfkoepnlbbdomnkfkmcie |
简介 | Client for OBS now playing widget |
文件大小 | 42.77 KB |
安装次数 | 90 |
当前版本 | 1.2.4 |
更新时间 | 2024-02-20 |
上架时间 | 2023-08-25 |
评分 | 5.00/5 共1次评分 |
开发者 | https://www.playingnow.de |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.playingnow.de/ |
隐私政策页面URL | https://tizhproger.github.io/privacy_policy |
支持的语言 | 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" } } |