JSFiddle - React, Tailwind, and code Playground

by Michael Prosser

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>

JavaScript

var restricted_access_urls = [
	"https://agrisphere-portal.com/work-schedule/tracking-dashboard/",
  "https://agrisphere-portal.com/work-schedule/list-management/",
  "https://agrisphere-portal.com/work-schedule/notification-settings/",
  "https://agrisphere-portal.com/ag-gear/equipment/naming-conventions/",
  "https://agrisphere-portal.com/ag-gear/equipment/details/",
  "https://agrisphere-portal.com/ag-gear/list-management/",
  "https://agrisphere-portal.com/ag-gear/equipment/report/",
  "https://agrisphere-portal.com/ag-gear/ppe/report/",
  "https://agrisphere-portal.com/agGear/scanner/",
  "https://agrisphere-portal.com/ag-gear/ppe/view/?adding=1",
  "https://agrisphere-portal.com/ag-gear/equipment/view/?adding=1",
  "",
  "",
  ""
]


$(window).focus(function(){

	if(restricted_access_urls.indexOf(window.location.href) > -1){
  
  
  
  	$('body').append('<p>IN FOCUS AGAIN</p>');
  
  }

});