Answer the question
In order to leave comments, you need to log in
How to replace default page in google chrome?
It is necessary to replace the standard chrome page when opening a new tab (the one where the search form and 8 thumbnails of frequently visited sites).
In the settings, I found only the ability to launch the desired page or groups of pages when the browser starts. And the transition to the desired page only by pressing the home button. And it is necessary that the page of interest to me opens exactly when I create a new tab.
How can this be done?
Answer the question
In order to leave comments, you need to log in
I'll add the answer above.
Here is the script (under chrome).
userscripts. Packing a userscript for Chrome
There is a possibility to write an extension for Chrome.
Here is an example (js):
chrome.browserAction.onClicked.addListener(function(activeTab)
{
var newURL = "http://vk.com";
chrome.tabs.create({ url: newURL });
});
Hmm, as a userscript option for the page https://www.google.ru/_/chrome/newtab
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question