Short Song Streaming

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

Short Song Streaming là gì?

Short Song Streaming là một tiện ích mở rộng Chrome được phát triển bởi martinratinaud, và tính năng chính của nó là "An extension to automatically skip to the next song after X seconds".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Short Song Streaming

Tải xuống các tệp mở rộng Short Song Streaming dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Short Song Streaming Short Song Streaming
ID kjbmheldmmohockbaiihjmpoiaojcpfd
URL Chính Thức https://chrome.google.com/webstore/detail/short-song-streaming/kjbmheldmmohockbaiihjmpoiaojcpfd
Mô tả An extension to automatically skip to the next song after X seconds
Kích Thước Tệp 175 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2021-01-19
Ngày Phát Hành 2021-01-13
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển martinratinaud
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}