Spotify Web Watcher

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

Τι είναι το Spotify Web Watcher;

Το Spotify Web Watcher είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://orestes.io, και η κύρια λειτουργία του είναι "Watch over the Spotify Web Player and report the current song, artist and cover".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Spotify Web Watcher

Λήψη αρχείων επέκτασης Spotify Web Watcher σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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