Advertisement
Guest User

simpleplanes.com mentioner

a guest
Oct 1st, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         simpleplanes.com tweaks
  3. // @version      0.1
  4. // @include http://simpleplanes.com/*
  5. // @include https://simpleplanes.com/*
  6. // @include http://www.simpleplanes.com/*
  7. // @include https://www.simpleplanes.com/*
  8. // @author       WNP78
  9. // ==/UserScript==
  10.  
  11. $(".comment-block p").each(function (a,b) { b.innerHTML = b.innerHTML.replace(/@([A-z0-9]+)/g, "<a style=\"background-color: #CCCCCC; color:black; border-radius:5px; padding-left: 3px; padding-right: 3px;\" href=\"/u/$1\">$&</a>"); } );
  12. $(".post-body p").each(function (a,b) { b.innerHTML = b.innerHTML.replace(/@([A-z0-9]+)/g, "<a style=\"background-color: #CCCCCC; color:black; border-radius:5px; padding-left: 3px; padding-right: 3px;\" href=\"/u/$1\">$&</a>"); } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement