Passeidireto

Disables the Blur Effect and removes the paywall.

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

// ==UserScript==
// @icon                https://upload.wikimedia.org/wikipedia/commons/e/e9/Pd_avatar_linkedin.png
// @name                Passeidireto
// @name:pt-BR          Passeidireto
// @version             1.0
// @namespace           sasd
// @author              R4wwd0G
// @description         Disables the Blur Effect and removes the paywall.
// @description:pt-br   Desabilita o Efeito Blur e remove o paywall.
// @license             MIT
// @include             https://www.passeidireto.com/*
// ==/UserScript==

                 


window.addEventListener('load', () => {
    const x = document.documentElement.innerHTML;
    const y = x.split('style="filter').join(':)');
    document.documentElement.innerHTML = y;

    [...document.querySelectorAll('.BannerSelector_banner-container__lwUxw')].map(z => z.parentNode.removeChild(z));
});