// ==UserScript==
// @name TwitterCashtag
// @namespace https://greasyfork.org/en/scripts/10315-twittercashtag
// @version 0.3
// @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 none
// ==/UserScript==
function appendLinksToTwitterCashtag() {
$('a.twitter-cashtag:not(".CashTagAdded")').each(function(){
$symbol = $('b',this).html();
$links = ' [StockCharts';
$links += ' , Yahoo';
$links += ' , StockTwits]';
$(this).after($links);
$(this).addClass('CashTagAdded');
});
}
$(document).ready( function(){
setTimeout( appendLinksToTwitterCashtag, 3000 );
});