Greasy Fork

Greasy Fork is available in English.

百度贴吧自动跳过核心区

try to take over the world!

当前为 2019-05-23 提交的版本,查看 最新版本

// ==UserScript==
// @name         百度贴吧自动跳过核心区
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        *tieba.baidu.com/*kw=*
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function() {
var a = window.location.href
    if (a.search('tab=')==-1 && a.search('qw=')==-1)
    {
        window.location.href=a + '&tab=main'
    }
})();