您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects broken twitter notifications
// ==UserScript== // @name Twitter tweet?id= redirect // @namespace http://tampermonkey.net/ // @version 1.0 // @description Redirects broken twitter notifications // @author Compu // @match *://*.twitter.com/* // @icon https://abs.twimg.com/favicons/twitter.2.ico // @grant none // @run-at document-start // @license GNU GPLv2 // ==/UserScript== var oldHref = document.location.href; const regex = /&cxt\=.*/ if (window.location.href.indexOf('twitter.com/tweet?id=') > -1) { window.location.replace(window.location.toString().replace('/tweet?id=', '/anyuser/status/').replace(regex, '')); } window.onload = function() { var bodyList = document.querySelector("body") var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { if (oldHref != document.location.href) { oldHref = document.location.href; console.log('location changed!'); if (window.location.href.indexOf('twitter.com/tweet?id=') > -1) { window.location.replace(window.location.toString().replace('/tweet?id=', '/anyuser/status/').replace(regex, '')); } } }); }); var config = { childList: true, subtree: true }; observer.observe(bodyList, config); };