自动避开核心区

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

  1. // ==UserScript==
  2. // @name 自动避开核心区
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description 躲开垃圾的核心区,直入主题
  6. // @author Uncle
  7. // @match https://tieba.baidu.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var url = document.location.toString();
  14.   var arrUrl = url.split("&");
  15. if(document.getElementsByClassName("focus j_tbnav_tab")[0].innerText == "核心区"){
  16. //alert(arrUrl[0]+"&"+arrUrl[1]+"&" + "tab=main")
  17. self.location.href=arrUrl[0]+"&"+arrUrl[1]+"&" + "tab=main"
  18. }
  19. // Your code here...
  20. })();

QingJ © 2025

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