Spotify Community temporarily unavailable bypass

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

// ==UserScript==
// @name         Spotify Community temporarily unavailable bypass
// @namespace    SpotifyCommunityMaintenance
// @version      0.1
// @description  Remove "The Spotify Community is temporarily unavailable" and show the page
// @author       Tackyou
// @include      *://community.spotify.com*
// @license      https://raw.githubusercontent.com/Tackyou/SpotifyCommunityMaintenanceBypass/master/LICENSE
// @supportURL   https://github.com/Tackyou/SpotifyCommunityMaintenanceBypass/issues
// @grant        none
// ==/UserScript==

var check = setInterval(function(){
    var elem = $('.lia-quilt-column.lia-quilt-column-08.lia-quilt-column-right.lia-quilt-column-icons');
    if(elem.length>0){
        clearInterval(check);
        elem.remove();
    }
}, 100);

QingJ © 2025

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