Custom Tab Assignment

I created a new Tab in Salesforce and the tab label is “Mini Console Views” Object name is “Mini_Console_View” and API name is “Mini_Console_View_c”. I’ve created a page that has have the ability to view Contact, Task, and Case as well as add new Tasks and Cases. The idea is to create a screen pop with this page. The skuid page I created works in preview but I’m trying to override the standard page with the visual force page and this

This is where I am having issues, when I go to create a new Visualforce page, I assume the standard language doesn’t apply. I think the standardController is why its not finding the page.

<apex:page standardController=“Contact” recordSetVar=“c”

extensions=“skuid.Redirects” action=“{!redirect}?page=ContactTab”>

Thanks in advance for your help.

Aaron, use the skuid:page Visualforce override approach instead:

<apex:page readonly="true" docType="html-5.0" title="Contacts" sidebar="false">
   <skuid:page page="ContactTab"/>
</apex:page>