I
I
italant2014-08-31 10:14:49
Google Chrome
italant, 2014-08-31 10:14:49

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

3 answer(s)
A
akarin, 2014-08-31
@italant

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 });
});

D
Daniel, 2014-08-31
@ZOTTCE

Hmm, as a userscript option for the page https://www.google.ru/_/chrome/newtab

3
386DX, 2014-08-31
@386DX

https://chrome.google.com/webstore/search-extensio...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question