AWS UI Helper Google chrome extension that adds links to ALB's, Listeners & TargetGroups Chrome web store link - https://chrome.google.com/webstore/detail/aws-ui-helper/mphfofmlanhmdaldkcidkpgnnihimadm?hl=en&authuser=0 Feel free to add other resources and create a PR Checkout - aws-ui-helper/content-script.js Lines 11 to 20 in 6926499 if(arnSplit[5].split("/")[0] == "loadbalancer" || arnSplit[5].split("/")[0] == "listener"){ var lbName = arnSplit[5].split("/")[2] var lbLink = window.location.origin+"/ec2/home#LoadBalancers:search="+lbName+";sort=loadBalancerName"; var a = document.createElement('a'); a.setAttribute('href',lbLink); a.setAttribute('target',"_blank"); a.innerHTML = search.innerHTML; search.innerHTML = "" search.appendChild(a) } for an sample of how to add link