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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Notify the currently playing song on Spotify. This is an unofficial extension."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Now Playing Notifier for Spotify [unofficial] एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}