贴吧丸

浏览移动端贴吧网页无需跳转登录(不可用)

  1. // ==UserScript==
  2. // @name 贴吧丸
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.2.210910
  5. // @description 浏览移动端贴吧网页无需跳转登录(不可用)
  6. // @author GAEE
  7. // @match *://tieba.baidu.com/*
  8. // @match *://m.tieba.com/*
  9. // @match *://jump2.bdimg.com/*
  10. // @match *://tiebac.baidu.com/*
  11. // @match *://c.tieba.baidu.com/*
  12. // @match *://byokpg.smartapps.cn/*
  13. // @icon
  14. // @grant none
  15. // ==/UserScript==
  16.  
  17. // @note 0.1.2 去除可见广告
  18. // @note 0.1.1 去除首页跳转APP横幅
  19.  
  20. (function() {
  21. 'use strict';
  22. const _hostList = ['tieba.baidu.com', 'm.tieba.com', 'jump2.bdimg.com', 'tiebac.baidu.com', 'c.tieba.baidu.com', 'byokpg.smartapps.cn'];
  23. var WL = window.location;
  24. var host = WL.hostname;
  25. var path = WL.pathname;
  26. var flag = encodeURIComponent('GAEE::贴吧药丸');
  27. var style = document.createElement("style");
  28. style.innerText = ".nav-bar-wrapper, .appPromote, .appBottomPromote, .fixed_bar, .j_footer_link, .tb-banner-wrapper, .tb-hotthread-wrapper, [class*='__bdad-wrap'], swan-view[class*='__nestBannerAd'], swan-view[class*='__subchain-ad'], swan-button[class*='videopb-clear-btn swan-spider-tap']{display:none!important}";
  29. document.head.appendChild(style);
  30. var execute = window[flag];
  31. if(_hostList.indexOf(host)==-1 || execute){
  32. return;
  33. }
  34. execute = true;
  35. if(path.indexOf('/p/')!=-1){
  36. var tid = /[0-9]+/.exec(path);
  37. WL.replace(`https://byokpg.smartapps.cn/pages/pb/pb?tid=${tid}`);
  38. }
  39. })();

QingJ © 2025

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