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”。
擴展截圖
下載Short Song Streaming擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | kjbmheldmmohockbaiihjmpoiaojcpfd |
| 官方網址 | 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'"
} | |