Short Song Streaming

An extension to automatically skip to the next song after X seconds

Was ist Short Song Streaming?

Short Song Streaming ist eine Chrome-Erweiterung, die von martinratinaud entwickelt wurde, und ihr Hauptmerkmal ist "An extension to automatically skip to the next song after X seconds".

Erweiterungsscreenshots

screenshot

Short Song Streaming-Erweiterungs-CRX-Datei herunterladen

Laden Sie Short Song Streaming-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Thanks to this extension, you will be able to discover very quickly a playlist by playing only the first seconds of each song.
This number of seconds is configurable for each streaming platform.

We are now supporting 
- Deezer 
- Spotify 

and can support any other like napster, youtube, amazon prime, just ask me!

CHANGELOG
1.1.2: fix infinite loop on slow networks on Spotify                    

Grundlegende Informationen zur Erweiterung

Name Short Song Streaming Short Song Streaming
ID kjbmheldmmohockbaiihjmpoiaojcpfd
Offizielle URL https://chrome.google.com/webstore/detail/short-song-streaming/kjbmheldmmohockbaiihjmpoiaojcpfd
Beschreibung An extension to automatically skip to the next song after X seconds
Dateigröße 175 KB
Installationsanzahl 18
Aktuelle Version 1.1.2
Letztes Update 2021-01-19
Veröffentlichungsdatum 2021-01-13
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler martinratinaud
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "An extension to automatically skip to the next song after X seconds",
    "version": "1.1.2",
    "name": "Short Song Streaming",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "icon-black-32.png",
        "128": "icon-black-120.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.deezer.com\/*\/playlist\/*",
                "https:\/\/open.spotify.com\/playlist\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.styles.css",
        "icon-black-32.png",
        "icon-green-32.png",
        "icon-black-120.png",
        "icon-green-120.png"
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}