您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Script disables blur on text & add full document
- // ==UserScript==
- // @name Scribd bypass
- // @description Script disables blur on text & add full document
- // @author FLXXX
- // @version 1.2
- // @license MIT
- // @namespace https://gf.qytechs.cn/ru/users/938036-flxxx
- // @match *://*.scribd.com/*
- // @icon https://s-f.scribdassets.com/favicon.ico
- // @require https://code.jquery.com/jquery-3.6.3.min.js
- // ==/UserScript==
- /* eslint-env jquery */
- $(document).ready(function () {
- 'use strict';
- function removePromoDivs() {
- const promoDivs = document.querySelectorAll('.promo_div');
- promoDivs.forEach(div => div.remove());
- }
- function removeUnselectable() {
- const unselectableElements = document.querySelectorAll('[unselectable="on"]');
- unselectableElements.forEach(el => el.removeAttribute('unselectable'));
- }
- function removeBlurredPage() {
- const blurredElements = document.querySelectorAll('.blurred_page');
- blurredElements.forEach(el => el.classList.remove('blurred_page'));
- }
- function cleanStylesAndAttributes() {
- const allElements = document.querySelectorAll('*');
- allElements.forEach(el => {
- if (el.style.color === 'transparent') {
- el.style.color = '';
- }
- if (el.style.textShadow) {
- el.style.textShadow = '';
- }
- el.removeAttribute('data-initial-color');
- el.removeAttribute('data-initial-text-shadow');
- });
- }
- window.addEventListener('load', () => {
- removePromoDivs();
- removeUnselectable();
- removeBlurredPage();
- cleanStylesAndAttributes();
- const observer = new MutationObserver(() => {
- removePromoDivs();
- removeUnselectable();
- removeBlurredPage();
- cleanStylesAndAttributes();
- });
- observer.observe(document.body, {
- childList: true,
- subtree: true
- });
- });
- });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址