// ==UserScript==
// @name        isPopup Hack
// @author      Kees Cook
// @version     1.0
// @namespace   http://outflux.net/greasemonkey
// @description Adds the global function "isPopup" which always returns false
// @include     http://*.seagate.com/*
// @include     https://*.seagate.com/*
// @license     GNU General Public License
// ==/UserScript==

window.isPopup = function(){
  return false;
}

