SwagLyrics for Spotify

Get lyrics of currently playing Spotify song so you don't sing along with the wrong ones and embarrass yourself later.

Hvad er SwagLyrics for Spotify?

SwagLyrics for Spotify er en Chrome-udvidelse udviklet af https://swaglyrics.dev, og dens hovedfunktion er "Get lyrics of currently playing Spotify song so you don't sing along with the wrong ones and embarrass yourself later.".

Udvidelsesskærmbilleder

screenshot

Download SwagLyrics for Spotify-udvidelses-CRX-fil

Download SwagLyrics for Spotify-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        The SwagLyrics extension extends Spotify Web Player support to the SwSpotify (https://swaglyrics.dev/SwSpotify) python library. This allows developers to make cross-platform applications that interact with Spotify without worrying about each OS themselves. The extension is open source at https://github.com/SwagLyrics/SwagLyrics-Chrome-Extension.

If you're an end user redirected to the extension by a dev, then all you need to do is to install this extension to enable support for the Spotify Web Player!                    

Grundlæggende oplysninger om udvidelsen

Navn SwagLyrics for Spotify SwagLyrics for Spotify
ID miopldoofdhmipepmnclnoangcdffmlk
Officiel URL https://chromewebstore.google.com/detail/swaglyrics-for-spotify/miopldoofdhmipepmnclnoangcdffmlk
Beskrivelse Get lyrics of currently playing Spotify song so you don't sing along with the wrong ones and embarrass yourself later.
Filstørrelse 9.59 KB
Antal Installationer 619
Nuværende Version 1.0
Senest Opdateret 2020-05-23
Udgivelsesdato 2020-05-22
Bedømmelse 3.46/5 Samlet 13 Bedømmelser
Udvikler https://swaglyrics.dev
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://swaglyrics.dev/SwagLyrics-Chrome-Extension
Hjælpeside-URL https://github.com/SwagLyrics/SwagLyrics-Chrome-Extension/issues
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SwagLyrics for Spotify",
    "description": " Get lyrics of currently playing Spotify song so you don't sing along with the wrong ones and embarrass yourself later.",
    "version": "1.0",
    "icons": {
        "128": "swaglyrics_pfp_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "all_frames": true,
            "js": [
                "bridge.js"
            ]
        }
    ]
}