Unblur Scribd

Unblur any Scribd document

Stan na 18-09-2016. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name          Unblur Scribd
// @namespace     io.github.lv.unblurscribd
// @version       1.0.4
// @description   Unblur any Scribd document
// @author        Luis Victoria
// @grant         none
// @icon          https://raw.githubusercontent.com/LV/UnblurScribd-Userscript/1.0.0/icon128.png
// @require       https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @match         http://*.scribd.com/doc/*
// @match         https://*.scribd.com/doc/*
// @match         http://scribd.com/doc/*
// @match         https://scribd.com/doc/*
// ==/UserScript==

setInterval(function() {
 $('.absimg').css('opacity', '1.0');
 $('.autogen_class_views_read2_page_blur_promo').remove();
 $('.between_page_ads').remove();
 $('.outer_page only_ie6_border blurred_page').remove();
 $('.page_blur_promo').remove();
 $('.page-blur-promo-overlay').remove();
 $('.page_missing_explanation_inner').remove();
 $('.text_layer').css('color', '#000');
 $('.text_layer').css('text-shadow', '0px 0px 0px #000');
}, 1000);