You need to sign in to do that
Don't have an account?

Customize Browser Tab Title
When our users log in with Chrome or Firefox (I imagine IE is the same), the Home Page browser tab says "Salesforce - Enterprise Edition". How do we change that to include our company name? It would be helpful since some of our users live in multiple instances of SF and having an indication of which org I'm logged into from the tab would be greatly helpful.
The easiest way is to keep track of the pod or subdomain (na22 versus cs22 versus cs 21, etc). Otherwise, you could also check the Setup->Company Information->Company Profile to determine if you're in the correct org.
All Answers
The easiest way is to keep track of the pod or subdomain (na22 versus cs22 versus cs 21, etc). Otherwise, you could also check the Setup->Company Information->Company Profile to determine if you're in the correct org.
Include this in the controller:
onRender: function(component, event, helper){
document.title = "Specify the title";
}
and you see that the name on the tab change it to the name specified by you.