Wattpad++

Removes the media container,suggsted stories and comment for faster loading and more efficient way to read story from wattpad

  1. // ==UserScript==
  2. // @name Wattpad++
  3. // @namespace http://tampermonkey.net/
  4. // @description Removes the media container,suggsted stories and comment for faster loading and more efficient way to read story from wattpad
  5. // @include https://www.wattpad.com
  6. // @version 0.1.0
  7. // ==/UserScript==
  8.  
  9. document.getElementsByClassName('media-wrapper,part-recommendations-container')[0].remove()
  10. var elem = document.getElementById("comment-container");
  11. elem.parentNode.removeChild(elem);