Spankbang BYPASS

Age restriction bypass

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Spankbang BYPASS
// @namespace    http://tampermonkey.net/
// @description  Age restriction bypass
// @author       Orgacord
// @version      1.0.6
// @match        https://spankbang.com/*
// @match        https://spankbang.party/*
// @run-at       document-start
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    const style = document.createElement('style');
    style.textContent = `
        .strong-blur { filter: none !important; backdrop-filter: none !important; }
        html, body { overflow: auto !important; position: static !important; }
        .i_icon-lock-18, svg .i_icon-lock-18 { display: none !important; }
        [aria-label="Explicit content locked"] {display: none !important;}
        .bg-surface-black\/40 {visibility: hidden !important;}
        div[x-show^="elementHasToWait == 'recommended_video_"] {display: none !important;}
    `;
    document.documentElement.appendChild(style);

    const removeLocks = () => {
        document.querySelectorAll("div[aria-label='Explicit content locked']").forEach(el => {
            if (el.parentElement) el.parentElement.remove();
        });

        document.querySelectorAll(".i_icon-lock-18, svg .i_icon-lock-18").forEach(el => el.remove());

        document.querySelectorAll("img.strong-blur").forEach(img => img.classList.remove("strong-blur"));
        
        document.querySelectorAll("div[x-show^=\"elementHasToWait == 'recommended_video_\"]").forEach(el => {el.remove();});
        document.querySelectorAll('.bg-surface-black\\/40').forEach(el => el.remove());

        document.documentElement.classList.remove("overflow-hidden");
        document.body.classList.remove("overflow-hidden");
    };

    removeLocks();
    new MutationObserver(removeLocks).observe(document.documentElement, { childList: true, subtree: true });
})();