Skip to content

Instantly share code, notes, and snippets.

@MattArnold
Last active February 5, 2018 19:12
Show Gist options
  • Save MattArnold/93d28145d7f537ec30b5c63d8a4b41cd to your computer and use it in GitHub Desktop.
Save MattArnold/93d28145d7f537ec30b5c63d8a4b41cd to your computer and use it in GitHub Desktop.
Improve Customer Profile Screen
// ==UserScript==
// @name Improve Customer Profile Screen
// @namespace https://gist.githubusercontent.com/MattArnold
// @version 0.2
// @description Improve Customer Profile Screen
// @author Matt Arnold
// @updateURL https://gist.githubusercontent.com/MattArnold/93d28145d7f537ec30b5c63d8a4b41cd/raw/17e402f5ee75f3a91a629e6b86e3690d93cda68b
// @downloadURL https://gist.githubusercontent.com/MattArnold/93d28145d7f537ec30b5c63d8a4b41cd/raw/17e402f5ee75f3a91a629e6b86e3690d93cda68b
// @match https://moosejaw.info/MachII/Customers/CustomerProfile.aspx?TWCustomerID=*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$(".OrdersLink").click();
document.title = $("#ctl00_cphMainContent_txtBillingFirstName").val() + " " + $("#ctl00_cphMainContent_txtBillingLastName").val() + " " + $("#ctl00_cphMainContent_txtBillingEmail").val();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment