Short Song Streaming

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

Short Song Streamingคืออะไร?

Short Song Streaming เป็นส่วนขยายของ Chrome ที่พัฒนาโดย martinratinaud และคุณลักษณะหลักของมันคือ "An extension to automatically skip to the next song after X seconds"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Short Song Streaming

ดาวน์โหลดไฟล์ส่วนขยาย Short Song Streaming ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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'"
}