Greasy Fork

Greasy Fork is available in English.

贴吧自动避开核心区

躲开垃圾的核心区,直入主题

当前为 2020-06-08 提交的版本,查看 最新版本

// ==UserScript==
// @name         贴吧自动避开核心区
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  躲开垃圾的核心区,直入主题
// @author       Uncle
// @match        https://tieba.baidu.com/*
// @grant        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...
})();