Funnyjunk Remove Profile Styles

REMOVES THE FUCKING PROFILE STYLES

  1. // ==UserScript==
  2. // @name Funnyjunk Remove Profile Styles
  3. // @namespace Posttwo
  4. // @description REMOVES THE FUCKING PROFILE STYLES
  5. // @include *funnyjunk.com/user/*
  6. // @version 4
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
  8. // ==/UserScript==
  9. $(document).ready(function ()
  10. {
  11. $("<input>",
  12. {
  13. value: "Remove CSS",
  14. type: "button",
  15. id: "removeCSS",
  16. }).appendTo("#profile > .title > .contentTitle");
  17. $('#removeCSS').click(function() {
  18. $('style:eq( 3 )').remove();
  19. });
  20. });