gavin19

Reddit - Replace NSFW text

Sep 20th, 2011
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name           Reddit - Highlight NSFW
  3. // @author         gavin19
  4. // @description    Replaces 'NSFW' with red/bold.
  5. // @match          http://*.reddit.com/*/*/comments/*
  6. // @include        http://*.reddit.com/*/*/comments/*
  7. // @version    1.0
  8. // ==/UserScript==
  9.  
  10. var s = document.querySelectorAll('.commentarea .md p');
  11. for (var i = 0, len=s.length; i<=len; i++) {
  12.  s[i].innerHTML = s[i].innerHTML.replace(/NSFW/ig, '<span style="color:red !important;font-weight:bolder !important">NSFW</span>');
  13.     }
Add Comment
Please, Sign In to add comment