Twitter Search Advanced

Adds an Advanced Search button next to Twitter's search box. Makes it easier to access Twitter's powerful advanced search features.

  1. // ==UserScript==
  2. // @name Twitter Search Advanced
  3. // @name:zh-CN Twitter高级搜索按钮
  4. // @name:ja Twitter高度な検索ボタン
  5. // @name:fr Recherche Avancée Twitter
  6. // @name:ru Расширенный поиск Twitter
  7. // @name:es Búsqueda Avanzada de Twitter
  8. // @name:pt Pesquisa Avançada do Twitter
  9. // @namespace http://tampermonkey.net/
  10. // @version 0.3
  11. // @description Adds an Advanced Search button next to Twitter's search box. Makes it easier to access Twitter's powerful advanced search features.
  12. // @description:zh-CN 在Twitter搜索框旁边添加高级搜索按钮,方便快速访问Twitter强大的高级搜索功能。
  13. // @description:ja Twitterの検索ボックスの横に高度な検索ボタンを追加し、Twitterの強力な検索機能に素早くアクセスできます。
  14. // @description:fr Ajoute un bouton de recherche avancée à côté de la barre de recherche Twitter. Facilite l'accès aux puissantes fonctionnalités de recherche avancée de Twitter.
  15. // @description:ru Добавляет кнопку расширенного поиска рядом с полем поиска Twitter. Облегчает доступ к мощным функциям расширенного поиска Twitter.
  16. // @description:es Añade un botón de búsqueda avanzada junto al cuadro de búsqueda de Twitter. Facilita el acceso a las potentes funciones de búsqueda avanzada de Twitter.
  17. // @description:pt Adiciona um botão de pesquisa avançada ao lado da caixa de pesquisa do Twitter. Facilita o acesso aos poderosos recursos de pesquisa avançada do Twitter.
  18. // @author Your name
  19. // @match https://x.com/*
  20. // @match https://twitter.com/*
  21. // @grant none
  22. // @license MIT
  23. // ==/UserScript==
  24. (function() {
  25. 'use strict';
  26. // Language settings
  27. const LANGUAGES = {
  28. 'zh-CN': '高级搜索',
  29. 'ja': '高度な検索',
  30. 'en': 'Search Advanced',
  31. 'fr': 'Recherche Avancée',
  32. 'ru': 'Расширенный поиск',
  33. 'es': 'Búsqueda Avanzada',
  34. 'pt': 'Pesquisa Avançada'
  35. };
  36. // Get user's browser language
  37. function getUserLanguage() {
  38. const lang = navigator.language || navigator.userLanguage;
  39. const shortLang = lang.split('-')[0];
  40. // Check for exact match first
  41. if (LANGUAGES[lang]) {
  42. return LANGUAGES[lang];
  43. }
  44. // Then check for language without region
  45. if (LANGUAGES[shortLang]) {
  46. return LANGUAGES[shortLang];
  47. }
  48. // Default to English
  49. return LANGUAGES['en'];
  50. }
  51. // Function to add the advanced search button
  52. function addAdvancedSearchButton() {
  53. // Find the search box container
  54. const searchBox = document.querySelector("#react-root > div > div > div.css-175oi2r.r-1f2l425.r-13qz1uu.r-417010.r-18u37iz > main > div > div > div > div > div > div.css-175oi2r.r-aqfbo4.r-gtdqiz.r-1gn8etr.r-1g40b8q > div.css-175oi2r.r-1e5uvyk.r-6026j > div.css-175oi2r.r-136ojw6 > div > div > div > div > div.css-175oi2r.r-1pz39u2.r-1777fci.r-15ysp7h.r-obd0qt.r-s8bhmr");
  55. if (searchBox && !document.getElementById('advanced-search-btn')) {
  56. // Create the button
  57. const button = document.createElement('button');
  58. button.id = 'advanced-search-btn';
  59. button.textContent = getUserLanguage();
  60. button.style.cssText = `
  61. margin-left: 12px;
  62. padding: 0 16px;
  63. height: 32px;
  64. min-height: 32px;
  65. border-radius: 16px;
  66. background-color: rgb(15, 20, 25);
  67. color: rgb(255, 255, 255);
  68. border: 1px solid rgb(15, 20, 25);
  69. font-weight: 700;
  70. cursor: pointer;
  71. font-size: 14px;
  72. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  73. transition-property: background-color, box-shadow;
  74. transition-duration: 0.2s;
  75. line-height: 32px;
  76. display: inline-flex;
  77. align-items: center;
  78. justify-content: center;
  79. user-select: none;
  80. white-space: nowrap;
  81. `;
  82. // Add hover effect
  83. button.onmouseover = function() {
  84. this.style.backgroundColor = 'rgb(39, 44, 48)';
  85. };
  86. button.onmouseout = function() {
  87. this.style.backgroundColor = 'rgb(15, 20, 25)';
  88. };
  89. // Add click event
  90. button.addEventListener('click', function() {
  91. window.location.href = 'https://x.com/search-advanced';
  92. });
  93. // Insert the button after the search box
  94. searchBox.parentNode.insertBefore(button, searchBox.nextSibling);
  95. return true;
  96. }
  97. return false;
  98. }
  99. // Function to check if we should add the button
  100. function shouldAddButton() {
  101. const url = window.location.href;
  102. return url.includes('/explore') || url.includes('/search-advanced');
  103. }
  104. // Function to continuously check for the search box
  105. function startChecking() {
  106. if (shouldAddButton()) {
  107. // Initial check
  108. if (!addAdvancedSearchButton()) {
  109. // If not found, set up periodic checking
  110. const checkInterval = setInterval(() => {
  111. if (addAdvancedSearchButton() || !shouldAddButton()) {
  112. clearInterval(checkInterval);
  113. }
  114. }, 1000);
  115. }
  116. }
  117. }
  118. // Start checking when script loads
  119. startChecking();
  120. // Create a MutationObserver to watch for DOM changes
  121. const observer = new MutationObserver((mutations) => {
  122. if (shouldAddButton() && !document.getElementById('advanced-search-btn')) {
  123. startChecking();
  124. }
  125. });
  126. // Start observing the document with the configured parameters
  127. observer.observe(document.body, {
  128. childList: true,
  129. subtree: true,
  130. attributes: true,
  131. characterData: true
  132. });
  133. // Also check when history events occur (back/forward navigation)
  134. window.addEventListener('popstate', function() {
  135. if (shouldAddButton()) {
  136. startChecking();
  137. }
  138. });
  139. // Check when the page visibility changes (tab switching)
  140. document.addEventListener('visibilitychange', function() {
  141. if (!document.hidden && shouldAddButton()) {
  142. startChecking();
  143. }
  144. });
  145. // Handle URL changes
  146. let lastUrl = location.href;
  147. new MutationObserver(() => {
  148. const url = location.href;
  149. if (url !== lastUrl) {
  150. lastUrl = url;
  151. if (shouldAddButton()) {
  152. startChecking();
  153. }
  154. }
  155. }).observe(document, {subtree: true, childList: true});
  156. })();

QingJ © 2025

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