// ==UserScript== // @name 贴吧自动避开核心区 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 躲开垃圾的核心区,直入主题 // @author Uncle // @match https://tieba.baidu.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var url = document.location.toString();   var arrUrl = url.split("&"); if(arrUrl.length == 3 && arrUrl[2] != "tab=main"){ //alert(arrUrl[0]+"&"+arrUrl[1]+"&" + "tab=main") self.location.href=arrUrl[0]+"&"+arrUrl[1]+"&" + "tab=main" } // Your code here... })();