您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypass Gerenal Skip button Websites
// ==UserScript== // @name General Ads Bypasser // @namespace http://tampermonkey.net/ // @version 0.1 // @description Bypass Gerenal Skip button Websites // @author JethaLal_420 // @match https://getthot.com/* // @icon https://www.google.com/s2/favicons?domain=getthot.com // @grant none // ==/UserScript== (function() { 'use strict'; if(window.location.href.includes('https://getthot.com/')) { var text = document.querySelector('body > script:nth-child(10)').innerText var urlRegex =/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig; var url = text.match(urlRegex)[0] console.log(url) window.open(url, '_self') } })();