Reddit Bypass Enhancer

Bypass the "open in app prompt" and unblur NSFW content on Reddit automatically.

目前為 2024-12-13 提交的版本,檢視 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Reddit Bypass Enhancer
// @namespace    https://greasyfork.org/en/users/1030895-universedev
// @version      1.1
// @description  Bypass the "open in app prompt" and unblur NSFW content on Reddit automatically.
// @author       UniverseDev
// @license      GPL-3.0-or-later
// @match        https://www.reddit.com/*
// @match        https://sh.reddit.com/*
// @grant        none
// @run-at       document-end
// @noframes
// ==/UserScript==
'use strict';

(function () {
    function processElements() {
        const nsfwModal = [...document.getElementsByTagName('shreddit-async-loader')].find(e =>
            e.getAttribute('bundlename')?.includes('nsfw_blocking_modal')
        );
        if (nsfwModal) nsfwModal.remove();

        const prompt = document.querySelector('xpromo-nsfw-blocking-container')?.shadowRoot?.querySelector('.prompt');
        if (prompt) prompt.remove();

        const blurreds = [...document.getElementsByTagName('shreddit-blurred-container')].filter(e =>
            e.shadowRoot?.innerHTML
        );
        blurreds.forEach(blurred => {
            blurred.firstElementChild.click();
        });
    }

    function mutationCallback() {
        processElements();
    }

    const observer = new MutationObserver(mutationCallback);
    observer.observe(document, {
        childList: true,
        subtree: true,
        attributes: true,
    });

    processElements();

    setTimeout(() => {
        const isShreddit = document.querySelector('shreddit-app');
        if (!isShreddit) observer.disconnect();
    }, 10000);
})();