Wednesday, August 22, 2018

Change Google chrome homepage by extension

Leave a Comment

Is there anyway to change google chrome homepage url by an extension. I'm trying to write a simple extension which can change homepage url.

Hope you can help me.

2 Answers

Answers 1

It is possible, and a quick search reveals that such an extension already exists.

If you want to do it yourself, you can have a look at the Override Pages documentation. You can change the New Tab page, and therefore can simply implement an HTTP redirect in Javascript to the page you want.

Answers 2

Insert this code to manifest.json:

"chrome_settings_overrides": {     "homepage": "http://www.homepage.com" } 
If You Enjoyed This, Take 5 Seconds To Share It

0 comments:

Post a Comment