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 |
Eメール | [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" } } |