Advertisement
xtreameprogram2

Untitled

Mar 27th, 2017
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Content Unblocker
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match *://www.litcharts.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. $('.blurred-text').removeClass("blurred-text");
  15. $('.blurred').removeClass("blurred");
  16. $('.btn-blurred').removeClass("btn-blurred");
  17. $('.quotes-explanations-promo').remove();
  18. $('.a-plus.a-plus-dialog').remove();
  19. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement