Install IE Tab from the Chrome Web Store
Once it's installed, you should see the IE Tab icon to the right of the Chrome address bar.
Now navigate to any page and click on the IE Tab icon to open the page with the IE rendering engine. That's it!
Right-click on the IE Tab icon and select "Options" to see all of the options, including the Auto URLs.
Auto URLs are one of the most important features of IE Tab. You typically need IE Tab for just a subset of the web pages you visit. For example, you might want to use IE Tab for all of your Microsoft Sharepoint pages. Auto URLs enable you to specify which pages should be opened in IE Tab automatically so you don't have to click on the IE Tab icon.
Auto URLs are specified as a filter string in one of two ways:
Exact string match with wildcard
With this mechanism, you specify a string that matches the full URL that should be opened with IE Tab. You may use an * to represent any sequence of characters at that point in the string. Note again that the entire string must match the URL, so it is common to include an '*' at the end of the string. Here are some examples:
Regular expressions
Regular expressions allow for more power in specifying your match strings. These are ECMAScript regular expressions.A regular expression is indicated by prefixing the regular expression with "r/". Here are some examples:
Per-URL IE Compatibility Mode
There is an option to set a single default IE compatibility mode for all URLs. But sometimes you need different URLs to use different compatibility modes (e.g. one URL runs in IE 8, another in IE 9).This can be accomplished using an Auto URL advanced option, which means prefixing the Auto URL string with square brackets and setting the corresponding compatibility mode designator in the brackets. This will determine the compatibility mode to be used whenever a matching URL is opened. The following compatibility modes are available:
Here are some examples:
Local Network Support
(This feature only applies to the Mac & Chromebook versions of IE Tab)
IE Tab for Mac & Chromebook uses remote servers to render the web pages. These remote servers will not have access to URLs that can only be accessed from your local network.
But IE Tab provides a means of sending all requests back through your local computer to access those URLs. This will be slightly slower than normal since all requests have to make an additional round-trip, but performance is normally acceptable if the web site uses caching intelligently.
There are two ways you can enable this local access:
Enable Auto URLs
If you have some need to temporarily disable Auto URLs, this is an easy way to do so without actually deleting your Auto URL list. This will typically only arise when you are experimenting with Auto URLs to get them just right.Open pop-up windows with Chrome
If this is turned off, then pop-up windows will be opened in a full IE window instead of a new Chrome window.Use a full window when displaying pop-ups
Some pop-ups may not include the full chrome address bar, making it difficult to determine the address being displayed. This option will force a full Chrome window for each pop-up.Only open Auto URLs in IE Tab
By default, when a page is opened in IE Tab and you click on a link in that page, the link will also be opened in IE Tab.Enable beforeunload checking
This attempts to enable beforeunload functionality for pages that wish to prompt the user before closing. This does not work for all page types, but if you need beforeunload functionality, you can try this feature to see if it works for your specific requirements. By default this option is disabled.Enable DEP Policy
This enables DEP policy for the IE Tab Helper process which is rendering the web page. Leave this on to behave the most like IE.Enable ATL DEP Workaround
DEP policy may break some ActiveX controls. IE implements an exception for a very specific data execution sequence that some ATL-based ActiveX controls use and this option enables that same workaround in IE Tab. Leave this on to behave the most like IE.Add IE Tab request header ("X-IETab: 1")
This adds an HTTP request header to every request made by IE Tab. This may enable you to configure a proxy to filter requests made specifically by IE Tab. For example you may want to allow requests from IE Tab but disallow requests from IE itself, especially if you are running an older, less secure version of IE.IE Compatibility Mode
Set your desired compatibility mode for IE. Note that you must have at least that version of IE installed for this setting to work.Auto URL Exceptions
Auto URL Exceptions provide you with a simple mechanism for excluding some URLs from being Auto URLs. If a URL matches an Auto URL Exception string, it will not be opened in IE Tab even if the URL also matches an Auto URL. The format for Auto URL Exceptions is the same as the format for Auto URLs. See above.Deployment
NOTE: The following features require an enterprise license. You can read more about enterprise licensing here, or feel free to send us an email at support@ietab.net if you have any questions.
The Extension
The most direct way to deploy the extension is to use the ExtensionInstallForceList Chrome Policy. You can read more about that policy here: ExtensionInstallForceList policy.The IE Tab Helper
IE Tab requires that the IE Tab Helper application be installed. The IE Tab Helper can be installed using our .MSI installer which can be found here: IE Tab Helper.The GPO Settings
You have complete control over all of the IE Tab Options via GPO. The IE Tab ADMX / ADML templates can be found here: GPO Template.Console Errors
All error messages are displayed in the Chrome error console. Any error message that happens within the page that is loaded in IE Tab will be prefixed with "IE: " in the Chrome console. Here is an example:
> IE: Error: Object doesn't support property or method 'addEventListener'. Source: http://www.mywebsite.com/thepage.html:12
Executing in-page script
From the chrome console, you can execute code within the IE Tab page with the special "ie.eval" function. Here are some sample commands and responses from the eval statement:
> ie.eval("document.URL")
IE: http://www.ietab.net/
> ie.eval("(function() { return 'Mode = ' + document.documentMode; })()");
IE: Mode = 10
>