WebNowPlaying

A browser extension that provides information and controls for media playing in the browser to external adapters.

WebNowPlaying란 무엇입니까?

WebNowPlaying은(는) rulz-dev-group에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension that provides information and controls for media playing in the browser to external adapters."입니다.

확장 프로그램 스크린샷

screenshot

WebNowPlaying 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A browser extension that provides information and controls for media playing in the browser to external adapters.  
It detects information about the media being played, such as the title, artist, album, and more.  
This information can be utilized by external adapters to manage the media, including actions like pausing, skipping, adjusting the volume, and more.

Documentation and Usage:  
https://wnp.keifufu.dev

Adapters:

- Rainmeter
- OBS
- CLI
- Macro Deck 2
- Read the full list on GitHub: https://github.com/keifufu/WebNowPlaying

Supports sites like: YouTube, Spotify, Soundcloud, and many others.
Read the full list here: https://wnp.keifufu.dev/supported-sites                    

확장 프로그램 기본 정보

이름 WebNowPlaying WebNowPlaying
ID jfakgfcdgpghbbefmdfjkbdlibjgnbli
공식 URL https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli
설명 A browser extension that provides information and controls for media playing in the browser to external adapters.
파일 크기 86.93 KB
설치 횟수 63,288
현재 버전 3.0.1
최근 업데이트 2024-01-04
출시 날짜 2019-10-06
평점 4.53/5 총 60 개의 평점
개발자 rulz-dev-group
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://wnp.keifufu.dev
도움말 페이지 URL https://github.com/keifufu/WebNowPlaying/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "WebNowPlaying",
    "short_name": "WebNowPlaying",
    "description": "A browser extension that provides information and controls for media playing in the browser to external adapters.",
    "version": "3.0.1",
    "icons": {
        "128": "icons\/icon-darkmode-128.png",
        "256": "icons\/icon-darkmode-256.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "WebNowPlaying"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "sw.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "injected.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}