// @name Lanzou VIP Redirect
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Redirects Lanzou download pages to VIP pages if "请先开通会员" is found in the content
// @match https://*.lanzou*.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
if (document.body.textContent.includes("请先开通会员")) {
var currentUrl = window.location.href;
var redirectUrl = currentUrl.replace(/(https:\/\/.*\.lanzou.*\.com\/)(.*)/, "$1tp/$2");
window.location.href = redirectUrl;
}
})();