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!”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载SpotOn扩展crx文件

下载SpotOn扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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"
            ]
        }
    ]
}