Now Playing Notifier for Spotify [unofficial]

Notify the currently playing song on Spotify. This is an unofficial extension.

Now Playing Notifier for Spotify [unofficial]란 무엇입니까?

Now Playing Notifier for Spotify [unofficial]은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Notify the currently playing song on Spotify. This is an unofficial extension."입니다.

확장 프로그램 스크린샷

screenshot

Now Playing Notifier for Spotify [unofficial] 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Notify the currently playing song on Spotify (open.spotify.com). 

**How to Use**
1. Open Spotify on Google Chrome. Then this extension will automatically run.
2. Play some music.
3. A silent notification will apear every time the music switches.

**Attention**
This extension just fetch song titles from HTML on Spotify, so it doesn't work when Spotify isn't opened on Chrome.                    

확장 프로그램 기본 정보

이름 Now Playing Notifier for Spotify [unofficial] Now Playing Notifier for Spotify [unofficial]
ID bieocankgankjnlnipolmaecmonaboja
공식 URL https://chromewebstore.google.com/detail/now-playing-notifier-for/bieocankgankjnlnipolmaecmonaboja
설명 Notify the currently playing song on Spotify. This is an unofficial extension.
파일 크기 13.54 KB
설치 횟수 128
현재 버전 0.0.1
최근 업데이트 2020-03-22
출시 날짜 2020-03-22
평점 1.00/5 총 3 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Now Playing Notifier for Spotify [unofficial]",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Notify the currently playing song on Spotify. This is an unofficial extension.",
    "icons": {
        "16": "icon\/16x16.png",
        "48": "icon\/48x48.png",
        "128": "icon\/128x128.png"
    },
    "permissions": [
        "notifications"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "js\/pagescript.js"
            ],
            "run_at": "document_start"
        }
    ]
}