The Computer Oracle

Open Chrome 'new tab' with a particular url

--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------

Take control of your privacy with Proton's trusted, Swiss-based, secure services.
Choose what you need and safeguard your digital life:
Mail: https://go.getproton.me/SH1CU
VPN: https://go.getproton.me/SH1DI
Password Manager: https://go.getproton.me/SH1DJ
Drive: https://go.getproton.me/SH1CT


Music by Eric Matyas
https://www.soundimage.org
Track title: Puddle Jumping Looping

--

Chapters
00:00 Open Chrome 'New Tab' With A Particular Url
00:23 Answer 1 Score 4
00:56 Accepted Answer Score 7
01:34 Thank you

--

Full question
https://superuser.com/questions/1400817/...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#googlechrome

#avk47



ACCEPTED ANSWER

Score 7


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=http://www.example.com/" />

(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: https://github.com/jimschubert/NewTab-Redirect




ANSWER 2

Score 4


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