Add this in the .js of the plugin
var getURL = window.location.href.toString();
if(this_tab_num == 5 && getURL == 'https://your_page/'){
window.open("https://another_page.pdf");
}
You need to identify the tab that you need to convert, I used this example cause I used it for different pages.
Good luck ??