Skip Intacct Landing Page

Redirect immediately to Intact login from the Intacct homepage.

// ==UserScript==
// @name         Skip Intacct Landing Page
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Redirect immediately to Intact login from the Intacct homepage.
// @author       Chelsea Voss
// @match        ^https://us.intacct.com/$
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    window.location = "https://www.intacct.com/ia/acct/login.phtml";
})();