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",…
Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.