Short Song Streaming

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

Qu'est-ce que Short Song Streaming ?

Short Song Streaming est une extension Chrome développée par martinratinaud, et sa fonction principale est "An extension to automatically skip to the next song after X seconds".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Short Song Streaming

Téléchargez les fichiers d'extension Short Song Streaming au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Short Song Streaming Short Song Streaming
ID kjbmheldmmohockbaiihjmpoiaojcpfd
URL Officiel https://chrome.google.com/webstore/detail/short-song-streaming/kjbmheldmmohockbaiihjmpoiaojcpfd
Description An extension to automatically skip to the next song after X seconds
Taille du Fichier 175 KB
Nombre d'Installations 18
Version Actuelle 1.1.2
Dernière Mise à Jour 2021-01-19
Date de Publication 2021-01-13
Évaluation 5.00/5 Total 1 Évaluations
Développeur martinratinaud
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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'"
}