Javi

Greasemonkey: eliminar "felizxxx"

Oct 31st, 2017
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. // ==UserScript==
  2. // @name New Script
  3. // @namespace Violentmonkey Scripts
  4. // @match *://twitter.com/*
  5. // @grant none
  6. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  7. // ==/UserScript==
  8.  
  9. $(document).ready(function() {
  10. function removeTontuna() {
  11. $('.trend-name')
  12. .filter(function(idx) {
  13. console.log('****')
  14. return $(this).text().toLowerCase().indexOf('feliz') !== -1;
  15. })
  16. .text('TontunΓ‘')
  17. .removeClass('trend-name');
  18. }
  19.  
  20. window.setInterval(removeTontuna, 1000);
  21.  
  22. });
Advertisement
Add Comment
Please, Sign In to add comment