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 |
| 公式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 |
| Eメール | [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'"
} | |