SpotOn

SpotOn

Upgrade your Spotify Web Player with SpotOn, and enjoy a completely customizable UX/UI redesign!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SpotOn",
  "version": "3.0.5.8",
  "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",
    "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"
      ]
    }
  ]
}