您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Get the download link directly.
当前为
// ==UserScript== // @name render-State.to bypass // @name:zh-CN render-state.to 去除重定向 // @namespace http://render-state.to/ // @version 2024-03-08 // @description Get the download link directly. // @description:zh-cn 去除了render-state.to网页上的产品下载链接重定向,避免进入漫长的等待和验证码环节 // @author cdeeef // @match https://render-state.to/p/* // @icon https://render-state.to/wp-content/uploads/2020/09/cropped-favicon-244x244.png // @grant none // @run-at document-end // @license MIT // ==/UserScript== (function() { 'use strict'; var links = document.querySelectorAll('a.btnd.ext-link') links.forEach(function(link) { var href = link.href; var match = href.match(/link=([a-zA-Z0-9+\/=]+)/); if (match && match[1]) { var decodedUrl = atob(match[1]); link.href = decodedUrl; } }); })();