Is this on endor?

Lets you know if a HIT is on the endor domain.

  1. // ==UserScript==
  2. // @name Is this on endor?
  3. // @namespace http://kadauchi.com/
  4. // @version 1.0
  5. // @description Lets you know if a HIT is on the endor domain.
  6. // @author Kadauchi
  7. // @icon http://kadauchi.com/avatar.jpg
  8. // @include https://www.google.com/evaluation/endor/*
  9. // @grant GM_log
  10. // @require https://code.jquery.com/jquery-2.1.4.min.js
  11. // ==/UserScript==
  12.  
  13. $("body").prepend('<div style="text-align: center; background-color: red;"><label style="color: black;">This is hosted on Endor. Returning may cause a lockout.</label></div>');