SoundCloud Player
SoundCloud Popup Player 🔥
SoundCloud Playerとは何ですか?
SoundCloud Playerはhttps://akiba.cloudによって開発されたChromeの拡張機能で、その主な機能は「SoundCloud Popup Player 🔥」です。
拡張機能のスクリーンショット
SoundCloud Player拡張機能のCRXファイルをダウンロード
SoundCloud Player拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Control your audio with ease using this extension. Reduce tab clicking by using the convenient pop-up window feature.
If you experience any issues, try reloading your SoundCloud tab or restarting your browser.
If the problem persists, please contact us using the links provided below.
Privacy Policy: https://akiba.cloud/soundcloud-player/privacy-policy
Homepage: https://akiba.cloud/soundcloud-player/
Github: https://github.com/S4WA/soundcloud-player
Feedback: https://github.com/S4WA/soundcloud-player/wiki/Feedback-Form
How to Use: https://github.com/S4WA/soundcloud-player/wiki/How-to-Use 拡張機能の基本情報
| 名前 | |
| ID | oackhlcggjandamnkggpfhfjbnecefej |
| 公式URL | https://chromewebstore.google.com/detail/soundcloud-player/oackhlcggjandamnkggpfhfjbnecefej |
| 説明 | SoundCloud Popup Player 🔥 |
| ファイルサイズ | 82.43 KB |
| インストール数 | 14,503 |
| 現在のバージョン | 1.3.9 |
| 最終更新日 | 2023-12-17 |
| 公開日 | 2020-04-30 |
| 評価 | 4.72/5 合計 25 レビュー |
| 開発者 | https://akiba.cloud |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/S4WA/soundcloud-player/wiki/How-to-Use |
| ヘルプページのURL | https://github.com/S4WA/soundcloud-player/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "SoundCloud Player",
"short_name": "SC Player",
"description": "SoundCloud Popup Player \ud83d\udd25",
"version": "1.3.9",
"homepage_url": "https:\/\/akiba.cloud\/soundcloud-player\/",
"permissions": [
"tabs",
"clipboardWrite"
],
"background": {
"service_worker": "background\/bg.js"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"browser-polyfill.min.js",
"jquery-3.6.4.min.js",
"contents\/contents.js",
"contents\/utils.js"
],
"matches": [
"*:\/\/soundcloud.com\/*"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup\/popup.html",
"default_icon": "icon.png"
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"commands": {
"open": {
"description": "Open the tab."
},
"toggle": {
"description": "Toggle the audio."
},
"prev": {
"description": "Play previous track"
},
"next": {
"description": "Play next track"
},
"fav": {
"description": "Add\/Remove current track to the favorite list."
},
"repeat": {
"description": "Shift change the repeat mode. (order: SINGLE, ALL, NONE)"
},
"shuffle": {
"description": "Toggle shuffle mode."
},
"mute": {
"description": "Toggle mute."
},
"up": {
"description": "Audio volume up"
},
"down": {
"description": "Audio volume down"
},
"seekb": {
"description": "Seek a bit backward."
},
"seekf": {
"description": "Seek a bit forward."
},
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+S"
},
"description": "Open the popup"
}
}
} | |