#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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mizdra และคุณลักษณะหลักของมันคือ "It's tools to share music playing on Youtube Music to SNS."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย #NowPlaying for Google Play Music

ดาวน์โหลดไฟล์ส่วนขยาย #NowPlaying for Google Play Music ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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