// ==UserScript== // @name TwitterCashtag // @namespace https://greasyfork.org/en/scripts/10315-twittercashtag // @version 0.8 // @description Add StockCharts, YahooFinance AND stockTwits links to any CashTag . // @include https://www.twitter.com/* // @include https://twitter.com/* // @copyright Daif Alotaibi E-mail: daif55@gmail.com // @downloadURL https://update.greasyfork.icu/scripts/10315/TwitterCashtag.user.js // @updateURL https://update.greasyfork.icu/scripts/10315/TwitterCashtag.meta.js // ==/UserScript== function appendLinksToTwitterCashtag() { $('a.twitter-cashtag:not(".CashTagAdded")').each(function(){ $symbol = $('b',this).text(); $links = ' '; $links += 'StockCharts'; $links += ' , Yahoo'; $links += ' , StockTwits'; $links += ' '; $(this).after($links); $(this).addClass('CashTagAdded'); }); } window.setInterval( function() { appendLinksToTwitterCashtag(); }, 3000);