SpotOn
Upgrade your Spotify Web Player with SpotOn, and enjoy a completely customizable UX/UI redesign!
SpotOn란 무엇입니까?
SpotOn은(는) Kami에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Upgrade your Spotify Web Player with SpotOn, and enjoy a completely customizable UX/UI redesign!"입니다.
확장 프로그램 스크린샷
SpotOn 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
SpotOn enhances the user experience of Spotify Web Player. ## Update Log Current Release: 3.0.2 The latest release, version 3.0.2, brings improvements such as adding missing variables, updated the version, removed a default feature, fixed a bug related to the white color in SpotOn. For a comprehensive overview of the release, refer to the [Full GitHub Release Notes](https://github.com/SenpaiHunters/SpotOn/releases). ## Note end Upon installing SpotOn, users receive a helpful introductory page for guidance. Should further assistance be required, support is available through messaging. For in-depth updates, please visit our GitHub page at: https://github.com/SenpaiHunters/SpotOn/. We prioritize the privacy of your data. Solely 'storage' values are retained to preserve your toggle and custom CSS preferences. Your data is securely stored by us, and SpotOn is both free and open source. For additional information on data collection, kindly refer to our [GitHub page:](https://github.com/SenpaiHunters/SpotOn/blob/Main/Private%20Policy.md).
확장 프로그램 기본 정보
이름 | SpotOn |
ID | hnbcgkmojpjmncmplcnefjnmcbckadff |
공식 URL | https://chromewebstore.google.com/detail/spoton/hnbcgkmojpjmncmplcnefjnmcbckadff |
설명 | Upgrade your Spotify Web Player with SpotOn, and enjoy a completely customizable UX/UI redesign! |
파일 크기 | 73.24 KB |
설치 횟수 | 46 |
현재 버전 | 3.0.2 |
최근 업데이트 | 2024-03-05 |
출시 날짜 | 2023-09-04 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Kami |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/SenpaiHunters/SpotOn/tree/Main |
도움말 페이지 URL | https://discord.gg/9hqVqYDpj3 |
개인정보 보호 정책 페이지 URL | https://github.com/SenpaiHunters/SpotOn/blob/Main/Private%20Policy.md |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SpotOn", "version": "3.0.2", "description": "Upgrade your Spotify Web Player with SpotOn, and enjoy a completely customizable UX\/UI redesign!", "author": "Kami", "homepage_url": "https:\/\/github.com\/senpaihunters\/spoton", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "scripting", "tabs", "contextMenus", "declarativeContent", "activeTab" ], "host_permissions": [ "https:\/\/open.spotify.com\/*" ], "action": { "default_popup": "settings.html" }, "commands": { "play-pause": { "description": "Play\/Pause", "suggested_key": { "default": "MediaPlayPause" }, "global": true }, "previous": { "description": "Previous Track", "suggested_key": { "default": "MediaPrevTrack" }, "global": true }, "next": { "description": "Next Track", "suggested_key": { "default": "MediaNextTrack" }, "global": true }, "hide_sidebar": { "description": "Hide the Sidebar" }, "hide_npb": { "description": "Hide the Now Playing Bar" }, "open_spotify": { "description": "Open Spotify" }, "shuffle": { "description": "Toggle Shuffle" }, "repeat": { "description": "Toggle Repeat" }, "like": { "description": "Like\/Dislike" }, "seek-forward": { "description": "Seek Forward" }, "seek-backward": { "description": "Seek Backward" }, "volume-up": { "description": "Volume Up" }, "volume-down": { "description": "Volume Down" }, "volume-mute": { "description": "Toggle Mute" } }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "js\/translater\/appender.js" ] } ] } |