Greasy Fork is available in English.

Adfoc 自动显示跳过按钮

Load and remove Adfoc hidden skip button

// ==UserScript==
// @name         Adfoc 自动显示跳过按钮
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Load and remove Adfoc hidden skip button
// @author       LingQi
// @match        https://adfoc.us/serve/?id=*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=adfoc.us
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    let skinDiv = document.querySelector("#showSkip");
    skinDiv.removeAttribute("style");
    // Your code here...
})();