油猴脚本破解蓝奏云vip

查看 49|回复 0
作者:凡勃伦效应   
// ==UserScript==
// @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;
    }
})();

请先, 脚本

您需要登录后才可以回帖 登录 | 立即注册

返回顶部