Unblur Scribd

Unblur any Scribd document

질문, 리뷰하거나, 이 스크립트를 신고하세요.
  1. // ==UserScript==
  2. // @name Unblur Scribd
  3. // @namespace io.github.lv.unblurscribd
  4. // @version 1.0.5
  5. // @description Unblur any Scribd document
  6. // @author Luis Victoria
  7. // @grant none
  8. // @icon https://raw.githubusercontent.com/LV/UnblurScribd-Userscript/master/icon.png
  9. // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
  10. // @match http://*.scribd.com/doc/*
  11. // @match https://*.scribd.com/doc/*
  12. // ==/UserScript==
  13.  
  14. setInterval(function() {
  15. $('.absimg').css('opacity', '1.0');
  16. $('.autogen_class_views_read2_page_blur_promo').remove();
  17. $('.between_page_ads').remove();
  18. $('.outer_page only_ie6_border blurred_page').remove();
  19. $('.page_blur_promo').remove();
  20. $('.page-blur-promo-overlay').remove();
  21. $('.page_missing_explanation_inner').remove();
  22. $('.text_layer').css('color', '#000');
  23. $('.text_layer').css('text-shadow', '0px 0px 0px #000');
  24. }, 1000);