Search code examples
javascriptgoogle-chromegoogle-chrome-extension

How can I change the default page with chrome extension


Just started to learn how to work with chrome extension, how can I use the extension to change the default page when I click on the button in the extension?


Solution

  • In manifest v3 it worked for me:

        "chrome_settings_overrides": {
            "startup_pages": ["https://page.com"]
        }