SwagLyrics for Spotify

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

Vad är SwagLyrics for Spotify?

SwagLyrics for Spotify är en Chrome-tillägg utvecklad av https://swaglyrics.dev, och dess huvudfunktion är "Get lyrics of currently playing Spotify song so you don't sing along with the wrong ones and embarrass yourself later.".

Tilläggsskärmbilder

screenshot

Ladda ner SwagLyrics for Spotify-förlängningens CRX-fil

Ladda ner SwagLyrics for Spotify-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn SwagLyrics for Spotify SwagLyrics for Spotify
ID miopldoofdhmipepmnclnoangcdffmlk
Officiell webbadress https://chromewebstore.google.com/detail/swaglyrics-for-spotify/miopldoofdhmipepmnclnoangcdffmlk
Beskrivning Get lyrics of currently playing Spotify song so you don't sing along with the wrong ones and embarrass yourself later.
Filstorlek 9.59 KB
Antal Installationer 619
Aktuell Version 1.0
Senast Uppdaterad 2020-05-23
Publiceringsdatum 2020-05-22
Betyg 3.46/5 Totalt 13 Betyg
Utvecklare https://swaglyrics.dev
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://swaglyrics.dev/SwagLyrics-Chrome-Extension
Hjälpsida URL https://github.com/SwagLyrics/SwagLyrics-Chrome-Extension/issues
Stödda Språk 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"
            ]
        }
    ]
}