Close allow-Ad-dialog on westca.com

Automatically close the allow-ad-dialog everytime it shows up

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Close allow-Ad-dialog on westca.com
// @namespace    http://tampermonkey.net/
// @version      2024-07-23
// @description  Automatically close the allow-ad-dialog everytime it shows up
// @author       nessus
// @match        https://www.westca.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=westca.com
// @grant        none
// ==/UserScript==


/*
1. wait for each page finish loading
2. find class="fc-close fc-icon-button"
3. click to by-pass it!
*/



function runWhenReady(readySelector) {
    var numAttempts = 0;
    var tryNow = function() {
        var elem = document.querySelector(readySelector);
        if (elem) {
            elem.click();
        } else {
            numAttempts++;
            if (numAttempts >= 9999) {
                console.warn('Giving up after 9999 attempts. Could not find: ' + readySelector);
            } else {
                setTimeout(tryNow, 10);
            }
        }
    };
    tryNow();
}

runWhenReady('.fc-close.fc-icon-button')