Advertisement
Guest User

Untitled

a guest
Aug 9th, 2016
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Hide deleted comments
  3. // @grant none
  4. // @include http://steamcommunity.com/*
  5. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js
  6. // ==/UserScript==
  7.  
  8. $(document).ready(function() {
  9. $("comment_item_title.ellipsis:contains('This item was moved or deleted.')")
  10. .parents('commenthistory_comment').hide();
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement