Open Chrome 'new tab' with a particular url
When I open a new tab in Chrome, I want to have it load particular URL.
I can see how to set a home page, and how to tell it what to do on startup -- but not how to load a page for new tabs.
How can I make it do this? Is it possible?
13 Answers
There are some extensions for that. It's the easiest option, search with 'new tab override' keyword. Here's a random example from Chrome Store. Try it.Custom New Tab
If you don't want to rely on third part, I've also found manual instructions on Stack Overflow.Override the Chrome new tab page with a webpage?
And also small video for that extension to code with.Chrome Extensions: New Tab Override - Programming with Text
1This just worked for me!
- Create a Chrome extension (or you can use one that you've already coded).
- Inside the
manifest.json, include:
"chrome_url_overrides": { "newtab": "newTabOverride.html" }- In the root folder of your extension, create a
newTabOverride.htmlfile that contains only this line:<meta http-equiv="refresh" content="0; url=" />
(I followed instructions from @PredatorIWD's answer here; I don't know why it was deleted. Maybe because it doesn't leave the cursor in the URL field to allow for a Google search.)
Also, you might want to just install an existing extension, if you trust it:
3about:blank
This is not an override of the Chrome's New Tab html (about://newtab or chrome://newtab).