Last active
February 5, 2018 19:12
-
-
Save MattArnold/93d28145d7f537ec30b5c63d8a4b41cd to your computer and use it in GitHub Desktop.
Improve Customer Profile Screen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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