您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Entirely redirect all Trump's posts on Twitter to a screenshot of the original tweet. This is a more scorched earth version of my other script that simply adds a link on the page, but this one is more streamlined to use if you don't care about seeing the Twitter comments.
// ==UserScript== // @name Redirect all Trump's pages on Twitter to a screenshot of the original tweet // @version 0.1 // @namespace http://punishedtrump.com // @description Entirely redirect all Trump's posts on Twitter to a screenshot of the original tweet. This is a more scorched earth version of my other script that simply adds a link on the page, but this one is more streamlined to use if you don't care about seeing the Twitter comments. // @author chird // @include https://twitter.com/realDonaldTrump/status/* // @grant none // @run-at document-start // ==/UserScript== var url = window.location.href; var new_url = url.replace(/twitter.com\/realDonaldTrump/i,"punishedtrump.com\/realDonaldTrump"); window.location.replace (new_url);