Greasy Fork is available in English.
Automatically skip ad-fly
当前为
// ==UserScript==
// @name Adfly-skipper
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Automatically skip ad-fly
// @author giuseppe-dandrea
// @match http*://q.gs/*
// @grant none
// ==/UserScript==
get_href();
function get_href() {
var href = "";
new Promise((resolve) => setTimeout(resolve, 1000)).then(() => {
href = $('#skip_bu2tton')[0].href;
if (href === "") {
href = get_href();
}
else {
window.open(href, '_self');
}
});
}