Redirect Apple Music to Windows App

Redirect Apple Music URLs to the Apple Music Windows app.

  1. // ==UserScript==
  2. // @name Redirect Apple Music to Windows App
  3. // @namespace https://tampermonkey.net/
  4. // @version 1.11
  5. // @description Redirect Apple Music URLs to the Apple Music Windows app.
  6. // @author Berk Kırıkçı
  7. // @match https://music.apple.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Redirect Apple Music URLs to the Apple Music app
  15. const url = window.location.href;
  16. const appUrl = url.replace("https://music.apple.com", "music://music.apple.com");
  17.  
  18. // Launch the app
  19. window.location.href = appUrl;
  20.  
  21. // Close the browser tab
  22. setTimeout(() => {
  23. window.close();
  24. }, 1000); // Wait for redirection to ensure the app launches
  25. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址