adfoc.us skip

Auto Open Skip Link & Show Hidden Button

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        adfoc.us skip
// @namespace   Violentmonkey Scripts
// @match       http://adfoc.us/*
// @match       https://adfoc.us/*
// @grant       none
// @version     1.2
// @author      Baba-Yagan
// @license     CC BY-NC-SA 4.0
// @license     https://creativecommons.org/licenses/by-nc-sa/4.0/
// @description Auto Open Skip Link & Show Hidden Button
// @homepage    https://greasyfork.org/en/scripts/529579-adfoc-us-skip
// ==/UserScript==

(function() {
    'use strict';

    // Make #showSkip visible
    let skipDiv = document.querySelector("#showSkip");
    if (skipDiv) {
        skipDiv.removeAttribute("style");
    }

    // Wait for the page to fully load
    window.onload = function() {
        let skipLink = document.querySelector("#showSkip a");
        if (skipLink && skipLink.href) {
            window.location.href = skipLink.href; // Redirect to the URL
        }
    };
})();