Greasy Fork镜像 支持简体中文。

推特廣告過濾器

隱藏推特中的廣告和側邊欄廣告。性能優化。

  1. // ==UserScript==
  2. // @name Twitter AdBlocker [Enhanced] | 推特广告过滤[优化版]🚫
  3. // @name:vi Bộ lọc quảng cáo Twitter
  4. // @name:zh-CN 推特广告过滤器
  5. // @name:zh-TW 推特廣告過濾器
  6. // @name:ja Twitter広告フィルター
  7. // @name:ko 트위터 광고 필터
  8. // @name:es Filtro de anuncios de Twitter
  9. // @name:ru Фильтр рекламы Twitter
  10. // @name:id Filter Iklan Twitter
  11. // @name:hi ट्विटर विज्ञापन फ़िल्टर
  12. // @namespace http://tampermonkey.net/
  13. // @version 0.4
  14. // @description Hide ads in tweets and sidebar. Optimized performance.
  15. // @description:vi Ẩn quảng cáo trong tweet và thanh bên. Hiệu suất được tối ưu hóa.
  16. // @description:zh-CN 隐藏推特中的广告和侧边栏广告。性能优化。
  17. // @description:zh-TW 隱藏推特中的廣告和側邊欄廣告。性能優化。
  18. // @description:ja ツイートとサイドバーの広告を非表示にします。パフォーマンス最適化。
  19. // @description:ko 트윗과 사이드바의 광고를 숨깁니다. 성능 최적화.
  20. // @description:es Oculta anuncios en tweets y barra lateral. Rendimiento optimizado.
  21. // @description:ru Скрывает рекламу в твитах и боковой панели. Оптимизированная производительность.
  22. // @description:id Sembunyikan iklan di tweet dan bilah samping. Kinerja dioptimalkan.
  23. // @description:hi ट्वीट्स और साइडबार में विज्ञापनों को छिपाएं। अनुकूलित प्रदर्शन।
  24. // @icon https://about.twitter.com/etc/designs/about2-twitter/public/img/favicon-32x32.png
  25. // @author gabe
  26. // @license MIT
  27. // @match https://twitter.com/*
  28. // @match https://x.com/*
  29. // @grant none
  30. // ==/UserScript==
  31.  
  32. (function () {
  33. "use strict";
  34. let adCount = 0;
  35. function log() {
  36. return console.info("[Twitter AD Filter]", ...arguments);
  37. }
  38. function hideAd(node) {
  39. try {
  40. if (
  41. !node ||
  42. node.nodeName !== "DIV" ||
  43. node.getAttribute("data-testid") !== "cellInnerDiv"
  44. ) {
  45. return;
  46. }
  47. const adArticle = node.querySelector(
  48. "div[data-testid='placementTracking'] > article"
  49. );
  50. if (!adArticle) {
  51. return;
  52. }
  53. const userName = adArticle.querySelector("div[data-testid='User-Name']");
  54. log("发现广告:", ++adCount, userName ? userName.innerText : "未知用户");
  55. node.style.cssText += "display: none;";
  56. } catch (err) {
  57. log("发生错误:", err.message);
  58. }
  59. }
  60. const pageObserver = new MutationObserver(function (mutations) {
  61. mutations.forEach(function (mutation) {
  62. mutation.addedNodes.forEach(hideAd);
  63. });
  64. const sidebarAd = document.querySelector("#react-root > div > div > div.css-175oi2r.r-1f2l425.r-13qz1uu.r-417010.r-18u37iz > main > div > div > div > div.css-175oi2r.r-aqfbo4.r-10f7w94.r-1hycxz > div > div.css-175oi2r.r-1hycxz.r-gtdqiz > div > div > div > div:nth-child(3) > div > aside");
  65. if (sidebarAd) {
  66. sidebarAd.style.display = 'none';
  67. log("已隐藏右侧栏广告");
  68. }
  69. });
  70. pageObserver.observe(document.body, {
  71. childList: true,
  72. subtree: true,
  73. });
  74. document.querySelectorAll("div[data-testid='cellInnerDiv']").forEach(hideAd);
  75. log("--- 广告过滤器已启动 ---");
  76. })();

QingJ © 2025

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