SoundCloud Player
SoundCloud Popup Player 🔥
SoundCloud Player란 무엇입니까?
SoundCloud Player은(는) https://akiba.cloud에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "SoundCloud Popup Player 🔥"입니다.
확장 프로그램 스크린샷
SoundCloud Player 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | SoundCloud Player |
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 |
이메일 | [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" } } } |