NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name RetailPath enhanced page status // @namespace http://tampermonkey.net/ // @version 0.1.0 // @description Colour containing page div // @author fmm // @match https://metcash.retailpath.com.au/* // @license MIT // @updateURL https://openuserjs.org/meta/fmm/RetailPath_enhanced_page_status.meta.js // ==/UserScript== (function() { 'use strict'; var pageColours = document.querySelectorAll('.page').forEach(function(pageItem) { //console.log("page found!"); pageItem.classList.add("enhanced"); if (pageItem.getElementsByClassName("AwaitingApproval").length > 0) { pageItem.classList.add("AwaitingApproval"); } if (pageItem.getElementsByClassName("WithStudio").length > 0) { pageItem.classList.add("WithStudio"); } if (pageItem.getElementsByClassName("InitialBrief").length > 0) { pageItem.classList.add("InitialBrief"); } }); })();