您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
심야식당내 base64코드 자동복호화
当前为
// ==UserScript== // @name 심야식당 자동복호화 // @namespace http://tampermonkey.net/ // @version 0.217 // @description 심야식당내 base64코드 자동복호화 // @author SYJ // @match https://arca.live/* // @icon https://www.google.com/s2/favicons?sz=64&domain=arca.live // @grant none // @require http://code.jquery.com/jquery-3.6.0.min.js // @license MIT // ==/UserScript== (function() { //'use strict'; let article=$('.article-content')[0]; function dec(reg) { if ( !reg.test(article.innerHTML) ) return; while (reg.test(article.innerHTML)) { let decoded = reg.exec(article.innerHTML)[0]; while (decoded.match(/aHR0c[0-9A-Za-z]{8,}[=]{0,2}/) == null) decoded = atob(decoded); decoded = atob(decoded); console.log(decoded); article.innerHTML = article.innerHTML.replace(reg,"<a href='" + decoded + "'>" + decoded + "</a>"); } } dec(/[0-9A-Za-z]{30,}[=]{1,2}/); dec(/[0-9A-Za-z]{100,}[=]{0,2}/); dec(/aHR0c[0-9A-Za-z]{20,}[=]{0,2}/); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址