wariat

Google_Play_blacklist.userjs

Jan 9th, 2013
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        Google Play Blacklist
  3. // @namespace   localhost
  4. // @description spamers blacklist
  5. // @include     https://play.google.com/store/*
  6. // @version     1
  7. // ==/UserScript==
  8.  
  9.  
  10.  
  11. ( function()
  12. {
  13.  
  14.   var tags = document.getElementsByTagName('a');
  15.  
  16.   for( var i = 0, tag; tag = tags[i]; i++ )
  17.   {
  18.     if ( tag.innerHTML == "Underground Lab" )
  19.     {
  20.       tag.innerHTML += " <span style='color: red'>SPAMER!</span>";
  21.     }
  22.   }
  23.  
  24. })();
Add Comment
Please, Sign In to add comment