Spotify Song Repeat

Spotify repeat song in loop.

Vad är Spotify Song Repeat?

Spotify Song Repeat är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Spotify repeat song in loop.".

Tilläggsskärmbilder

screenshot

Ladda ner Spotify Song Repeat-förlängningens CRX-fil

Ladda ner Spotify Song Repeat-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

                        This extension allow you to enable to play one song in repeat on Spotify.                    

Grundläggande Information om Tillägg

Namn Spotify Song Repeat Spotify Song Repeat
ID cppllpjljepgfjocipdjgioinfhbbhap
Officiell webbadress https://chromewebstore.google.com/detail/spotify-song-repeat/cppllpjljepgfjocipdjgioinfhbbhap
Beskrivning Spotify repeat song in loop.
Filstorlek 1.12 MB
Antal Installationer 255
Aktuell Version 1.1
Senast Uppdaterad 2017-06-10
Publiceringsdatum 2017-06-10
Betyg 4.11/5 Totalt 18 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Song Repeat",
    "manifest_version": 2,
    "version": "1.1",
    "description": "Spotify repeat song in loop.",
    "permissions": [
        "http:\/\/open.spotify.com\/*",
        "https:\/\/open.spotify.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/open.spotify.com\/*",
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "32": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    }
}