Spotify Web Watcher

Watch over the Spotify Web Player and report the current song, artist and cover

Spotify Web Watcher란 무엇입니까?

Spotify Web Watcher은(는) https://orestes.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watch over the Spotify Web Player and report the current song, artist and cover"입니다.

확장 프로그램 스크린샷

screenshot

Spotify Web Watcher 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Connects to a private URL where you can display what you are playing currently on the Spotify Web Player

- Open Spotify Web Player (https://open.spotify.com)
- Log-in into Spotify
- The extension icon will turn green
- Click on the extension icon
- Copy the URL
- Use it on your streaming software (OBS/SLOBS/XPlit) as a "browser" source                    

확장 프로그램 기본 정보

이름 Spotify Web Watcher Spotify Web Watcher
ID bdmajojbomhndfchgmljkjihdpjhcefl
공식 URL https://chromewebstore.google.com/detail/spotify-web-watcher/bdmajojbomhndfchgmljkjihdpjhcefl
설명 Watch over the Spotify Web Player and report the current song, artist and cover
파일 크기 1.95 MB
설치 횟수 242
현재 버전 1.1.0
최근 업데이트 2022-07-08
출시 날짜 2020-05-12
개발자 https://orestes.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/orestes/spotify-web-watcher
도움말 페이지 URL https://github.com/orestes/spotify-web-watcher/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Web Watcher",
    "version": "1.1.0",
    "description": "Watch over the Spotify Web Player and report the current song, artist and cover",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/cdn.firebase.com https:\/\/www.googleapis.com; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/16x16-green.png",
        "48": "icons\/48x48-green.png",
        "128": "icons\/128x128-green.png"
    },
    "web_accessible_resources": [
        "icons\/*.png"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/48x48-white.png",
            "32": "icons\/48x48-white.png",
            "48": "icons\/48x48-white.png"
        },
        "default_title": "Spotify Web Watcher",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}