Spotify Web Watcher

Watch over the Spotify Web Player and report the current song, artist and cover

Spotify Web Watcher क्या है?

Spotify Web Watcher https://orestes.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Watch over the Spotify Web Player and report the current song, artist and cover"।

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

screenshot

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

crx प्रारूप में Spotify Web Watcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Connects to a private URL where you can display what you are playing currently on the Spotify Web Player

- Open Spotify Web Player (https://open.spotify.com)
- Log-in into Spotify
- The extension icon will turn green
- Click on the extension icon
- Copy the URL
- Use it on your streaming software (OBS/SLOBS/XPlit) as a "browser" source                    

एक्सटेंशन की मूल जानकारी

नाम Spotify Web Watcher Spotify Web Watcher
ID bdmajojbomhndfchgmljkjihdpjhcefl
आधिकारिक URL https://chromewebstore.google.com/detail/spotify-web-watcher/bdmajojbomhndfchgmljkjihdpjhcefl
विवरण Watch over the Spotify Web Player and report the current song, artist and cover
फ़ाइल का आकार 1.95 MB
स्थापना संख्या 242
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2022-07-08
प्रकाशन तिथि 2020-05-12
डेवलपर https://orestes.io
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/orestes/spotify-web-watcher
सहायता पृष्ठ URL https://github.com/orestes/spotify-web-watcher/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Web Watcher",
    "version": "1.1.0",
    "description": "Watch over the Spotify Web Player and report the current song, artist and cover",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/cdn.firebase.com https:\/\/www.googleapis.com; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/16x16-green.png",
        "48": "icons\/48x48-green.png",
        "128": "icons\/128x128-green.png"
    },
    "web_accessible_resources": [
        "icons\/*.png"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/48x48-white.png",
            "32": "icons\/48x48-white.png",
            "48": "icons\/48x48-white.png"
        },
        "default_title": "Spotify Web Watcher",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}