Spotify Community temporarily unavailable bypass

Remove "The Spotify Community is temporarily unavailable" and show the page

  1. // ==UserScript==
  2. // @name Spotify Community temporarily unavailable bypass
  3. // @namespace SpotifyCommunityMaintenance
  4. // @version 0.1
  5. // @description Remove "The Spotify Community is temporarily unavailable" and show the page
  6. // @author Tackyou
  7. // @include *://community.spotify.com*
  8. // @license https://raw.githubusercontent.com/Tackyou/SpotifyCommunityMaintenanceBypass/master/LICENSE
  9. // @supportURL https://github.com/Tackyou/SpotifyCommunityMaintenanceBypass/issues
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. var check = setInterval(function(){
  14. var elem = $('.lia-quilt-column.lia-quilt-column-08.lia-quilt-column-right.lia-quilt-column-icons');
  15. if(elem.length>0){
  16. clearInterval(check);
  17. elem.remove();
  18. }
  19. }, 100);

QingJ © 2025

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