您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script does almost all the work for you, letting you skip Adfly. (except Click here to continue)
- // ==UserScript==
- // @name Adfly Skipper
- // @namespace https://github.com/charlie-moomoo
- // @version 0.1
- // @description This script does almost all the work for you, letting you skip Adfly. (except Click here to continue)
- // @author CharlieMoomoo
- // @match *://*/*
- // @icon https://play-lh.googleusercontent.com/Tie7kj_sUJacI3b6d618rKbJJx-FjEduZyuWK5hBLDeHI-Qme1hBYNOE0gTM3CATD6Am
- // @grant window.onurlchange
- // @license MIT
- // @run-at document-start
- // ==/UserScript==
- (function() {
- 'use strict';
- const tryClick = ()=>{
- if (!document.querySelector(".mwButton")) return
- document.querySelector(".mwButton").click()
- }
- const run = ()=>{
- if (!location.pathname.startsWith("/pushredirect")) return
- return window.location.replace(decodeURIComponent(location.search.split("&dest=")[1]))
- }
- run()
- setInterval(tryClick,1000)
- window.addEventListener("urlchange",run)
- })();