Try this... simple jQuery code to replace all links on document ready, but only whith specific class.
HTML
<a href="http://www.foo.in/x/foo.html" class="link">Link one</a>
<a href="http://www.foo.in/x/bar.html" class="link">Link two</a>
<a href="http://www.foo.in/x/bar.html">Link tree (not affected)</a>
jQuery
$(document).ready(function() {
$('.link').each(function() {
var newLink = $(this).attr('href');
newLink = newLink.replace("/x", "/x/y");
$(this).attr('href',newLink);
});
});
Live Example
EDITED to match with new information:
Create a new bookmark in your browser (crtl+D in chrome) and edit the bookmark url.
Replace the url with this code:
javascript:function getLinks(){var arr=new Array();arr=document.getElementsByTagName("a");for(var i=0;i<arr.length;i++){var link=document.getElementsByTagName("a").item(i).href;newLink=link.replace("/x","/x/y");document.getElementsByTagName('a').item(i).href=newLink;}};getLinks();
Don't miss the initial "javascrip:"
Now, when you are in the page you want to replace the links, just click on the bookmark and the links will be replaced.