#NowPlaying for Google Play Music

It's tools to share music playing on Youtube Music to SNS.

#NowPlaying for Google Play Music란 무엇입니까?

#NowPlaying for Google Play Music은(는) mizdra에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "It's tools to share music playing on Youtube Music to SNS."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

#NowPlaying for Google Play Music 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ## Features
- Share your music to Twitter
- Support Youtube Music
- Customizable template with variable
    - ${title}: The title of music
    - ${artist}: The artist name of music
    - ${album}: The album name of music
- Support mobile platform

## Change Log
- see https://github.com/mizdra/now-playing-for-google-play-music/blob/master/CHANGELOG.md                    

확장 프로그램 기본 정보

이름 #NowPlaying for Google Play Music #NowPlaying for Google Play Music
ID nhpanomgefidcljmcmkbanhoomaglmlk
공식 URL https://chromewebstore.google.com/detail/nowplaying-for-google-pla/nhpanomgefidcljmcmkbanhoomaglmlk
설명 It's tools to share music playing on Youtube Music to SNS.
파일 크기 863 KB
설치 횟수 311
현재 버전 1.3.0
최근 업데이트 2021-06-15
출시 날짜 2019-12-15
평점 5.00/5 총 5 개의 평점
개발자 mizdra
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://now-playing-for-gpm.mizdra.net
도움말 페이지 URL https://github.com/mizdra/now-playing-for-google-play-music
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "#NowPlaying for Google Play Music",
    "version": "1.3.0",
    "description": "It's tools to share music playing on Youtube Music to SNS.",
    "short_name": "#NowPlaying",
    "author": "mizdra",
    "homepage_url": "https:\/\/now-playing-for-gpm.mizdra.net",
    "permissions": [
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/music.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                ".\/pages\/ytm\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": ".\/pages\/options.html",
        "open_in_tab": true
    },
    "icons": {
        "48": "img\/logo-48.png",
        "96": "img\/logo-96.png",
        "128": "img\/logo-128.png"
    },
    "manifest_version": 2
}