Unblur Scribd

Unblur any Scribd document

当前为 2016-09-18 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Unblur Scribd
  3. // @namespace io.github.lv.unblurscribd
  4. // @version 1.0.4
  5. // @description Unblur any Scribd document
  6. // @author Luis Victoria
  7. // @grant none
  8. // @icon https://raw.githubusercontent.com/LV/UnblurScribd-Userscript/1.0.0/icon128.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. // @match http://scribd.com/doc/*
  13. // @match https://scribd.com/doc/*
  14. // ==/UserScript==
  15.  
  16. setInterval(function() {
  17. $('.absimg').css('opacity', '1.0');
  18. $('.autogen_class_views_read2_page_blur_promo').remove();
  19. $('.between_page_ads').remove();
  20. $('.outer_page only_ie6_border blurred_page').remove();
  21. $('.page_blur_promo').remove();
  22. $('.page-blur-promo-overlay').remove();
  23. $('.page_missing_explanation_inner').remove();
  24. $('.text_layer').css('color', '#000');
  25. $('.text_layer').css('text-shadow', '0px 0px 0px #000');
  26. }, 1000);