-
-
Save Locussta/bd957149831b31f17a714be55dace46e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @id Scribd.com Ublur | |
| // @name Scribd.com Ublur | |
| // @namespace com.scribd.Ublur | |
| // @version 1.1 | |
| // @author fariz | |
| // @description Unblur Scribd.com document pages | |
| // @include http*://*.scribd.com/* | |
| // @run-at document-end | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js | |
| // @homepageURL https://github.com/CryptopoolSpace | |
| // @iconURL http://www.scribd.com/favicon.ico | |
| // @supportURL https://github.com/CryptopoolSpace | |
| // @updateURL https://github.com/CryptopoolSpace | |
| // @downloadURL https://github.com/CryptopoolSpace | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript==// @id Scribd.com Ublur | |
| // @name Scribd.com Ublur | |
| // @namespace com.scribd.Ublur | |
| // @version 1.1 | |
| // @author fariz | |
| // @description Unblur Scribd.com document pages | |
| // @include http*://*.scribd.com/* | |
| // @run-at document-end | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js | |
| // @homepageURL https://github.com/CryptopoolSpace | |
| // @iconURL http://www.scribd.com/favicon.ico | |
| // @supportURL https://github.com/CryptopoolSpace | |
| // @updateURL https://github.com/CryptopoolSpace | |
| // @downloadURL https://github.com/CryptopoolSpace | |
| // ==/UserScript== | |
| setInterval(function() { | |
| $('.page-blur-promo-overlay').remove(); | |
| $('.page_missing_explanation_inner').remove(); | |
| $('.autogen_class_views_read2_page_blur_promo').remove(); | |
| $('.outer_page only_ie6_border blurred_page').remove(); | |
| $('.page-blur-promo').removeClass('page-blur-promo'); | |
| $('.page_blur_promo').remove(); | |
| $('.absimg').css('opacity', '1.0'); | |
| $('.text_layer').css('color', '#000'); | |
| $('.text_layer').css('text-shadow', '0px 0px 0px #000'); | |
| $('.autogen_class_views_pdfs_page_blur_promo').css('display','none'); | |
| }, 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment