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] เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Notify the currently playing song on Spotify. This is an unofficial extension."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Now Playing Notifier for Spotify [unofficial]

ดาวน์โหลดไฟล์ส่วนขยาย Now Playing Notifier for Spotify [unofficial] ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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"
        }
    ]
}