Switch all links to "r/MtF" on reddit to r/MtF/new
当前为
// ==UserScript==
// @name r/MtF link fixer
// @namespace tech.myip.jess.mtflink
// @version 0.1
// @description Switch all links to "r/MtF" on reddit to r/MtF/new
// @author BecomingJess
// @match https://www.reddit.com/r/MtF/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('a[href="https://www.reddit.com/r/MtF/"]').attr('href','https://www.reddit.com/r/MtF/new/');
// Your code here...
})();