Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name New Script
- // @namespace Violentmonkey Scripts
- // @match *://twitter.com/*
- // @grant none
- // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
- // ==/UserScript==
- $(document).ready(function() {
- function removeTontuna() {
- $('.trend-name')
- .filter(function(idx) {
- console.log('****')
- return $(this).text().toLowerCase().indexOf('feliz') !== -1;
- })
- .text('TontunΓ‘')
- .removeClass('trend-name');
- }
- window.setInterval(removeTontuna, 1000);
- });
Advertisement
Add Comment
Please, Sign In to add comment