RSSAmplifier

thomasorlita.com · Dec 22, 2025

How to change the New Tab Page in Chrome

0
Sign in to vote or save

This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.

Chromium doesn't offer a direct way to change the New Tab Page to a custom URL. However, you can change this with a few lines of JavaScript using a Chrome extension. [1] background.js chrome.tabs.onCreated.addListener(function (tab) { if (tab.pendingUrl === 'chrome://newtab/' && tab.url === '') { chrome.tabs.update(tab.id, { url: "https://example.com" }); } }); manifest.json { "name": "NTP",…

Read on thomasorlita.com

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.