您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a link on Trump's suspended Twitter pages to a screenshot of the deleted tweet
// ==UserScript== // @name Add a link to a screenshot of Trump's tweets on Twitter // @namespace http://punishedtrump.com // @version 0.2 // @description Adds a link on Trump's suspended Twitter pages to a screenshot of the deleted tweet // @author chird // @include https://twitter.com/realDonaldTrump/status/* // @grant none // ==/UserScript== var url = window.location.href; var id = url.replace(/(.*)\/(.*)/i,"$2"); // get the tweet ID new MutationObserver(function(m) { document.querySelectorAll("a[href*='notices-on-twitter']").forEach(function (a) { a.parentNode.parentNode.innerHTML = "This Tweet is from a suspended account. <b><a href='https://punishedtrump.com/realDonaldTrump/status/"+id+"'>View the original tweet.</a></b>"; }); }).observe(document, {childList: true, subtree: true});