M HYPE SPLASH
// general

Open Chrome 'new tab' with a particular url

By Emily Wilson

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?

1

3 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

1

This just worked for me!

  1. Create a Chrome extension (or you can use one that you've already coded).
  2. Inside the manifest.json, include:
 "chrome_url_overrides": { "newtab": "newTabOverride.html" }
  1. In the root folder of your extension, create a newTabOverride.html file 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:

3

about:blank

This is not an override of the Chrome's New Tab html (about://newtab or chrome://newtab).

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy