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"입니다.

확장 프로그램 스크린샷

screenshot

Now Playing - OBS 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    }
}