您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypasses MBoost links using the Ethos API
当前为
// ==UserScript== // @name Ethos MBoost Bypasser // @namespace http://tampermonkey.net // @version 1.0 // @description Bypasses MBoost links using the Ethos API // @author Shehajeez // @match https://mboost.me/a/* // @grant GM_xmlhttpRequest // ==/UserScript== (function() { 'use strict'; var currenturl = window.location.href; GM_xmlhttpRequest({ method: "GET", url: "https://ethos-testing.vercel.app/api/mboost/bypass?link=" + currenturl, onload: function(response) { var data = JSON.parse(response.responseText); if (data.success && data.bypassed_link) { window.location.href = data.bypassed_link; } else { console.error("failed to get bypassed link."); } } }); })();