Unblur Scribd

Unblur any Scribd document

目前為 2016-09-18 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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);