NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Twitter: Replaces Profile links to Get ID site // @namespace covertanonymous // @include https://twitter.com // @include https://twitter.com/* // @exclude https://twitter.com/i/* // @version 1 // @grant none // @updateURL https://openuserjs.org/meta/twitcovertanongmail.com/Twitter_Replaces_Profile_links_to_Get_ID_site.meta.js // @require http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js // ==/UserScript== // Adds gettwitterid.com text to user name text // $('.stream .u-dir.username > b').delay(3000).prepend(" http://gettwitterid.com/?user_name="); // changes the twitter link to gettwitterid.com link // $('.stream .js-nav.js-user-profile-link.js-action-profile.js-account-group.account-group').each(function() { var value = $(this).attr('href'); $(this).attr('href', value.replace('/','http://gettwitterid.com/?user_name=')); }); /* // unfinished code // adds unnesary slash // $('.js-nav.js-user-profile-link.js-action-profile.js-account-group.account-group').attr('href',function(i,v) { return "http://gettwitterid.com/?user_name=" + v; }); */