Short Song Streaming

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

Short Song Streaming란 무엇입니까?

Short Song Streaming은(는) martinratinaud에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to automatically skip to the next song after X seconds"입니다.

확장 프로그램 스크린샷

screenshot

Short Song Streaming 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Short Song Streaming Short Song Streaming
ID kjbmheldmmohockbaiihjmpoiaojcpfd
공식 URL https://chrome.google.com/webstore/detail/short-song-streaming/kjbmheldmmohockbaiihjmpoiaojcpfd
설명 An extension to automatically skip to the next song after X seconds
파일 크기 175 KB
설치 횟수 18
현재 버전 1.1.2
최근 업데이트 2021-01-19
출시 날짜 2021-01-13
평점 5.00/5 총 1 개의 평점
개발자 martinratinaud
이메일 [email protected]
결제 유형 free
지원되는 언어 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'"
}