Greasy Fork镜像 支持简体中文。

Show All Twitter Replies

Fix Twitter only showing a partial list of replies

// ==UserScript==
// @name         Show All Twitter Replies
// @namespace    https://tech.jacenboy.com/replies/
// @version      1.0
// @description  Fix Twitter only showing a partial list of replies
// @author       JacenBoy
// @match        http*://*twitter.com/*/status/*
// @grant        none
// ==/UserScript==

(function() {
  'use strict';

  if (window.location.href.indexOf("?") != -1) {
    window.location.replace(window.location.href.split("?")[0]);
  }
})();

QingJ © 2025

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