您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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);