I Need to make a homepage extension. My idea is to host the page on server and redirect the browser to that page on the launch of browser only. Can some one help me to create extension for this using crossrider. Thanks in advance
Asked
Active
Viewed 52 times
1 Answers
1
The Crossrider platform does not support changing/redirecting the browser home page as this is an annoyance to users. The nearest you can get to it, is to create the tab with the desired page, as follows:
appAPI.ready(function($) {
appAPI.tabs.create('http://www.example.com');
});
[Disclosure: I am a Crossrider employee]

Shlomo
- 3,763
- 11
- 16
-
Thank you @Shlomo for the guidance. Adopting this way to work around – user5019454 Jun 30 '15 at 05:07