Production warning

Warns you when you are in production

  1. // ==UserScript==
  2. // @name Production warning
  3. // @namespace https://greatest.deepsurf.us/production-warning
  4. // @version 0.2
  5. // @description Warns you when you are in production
  6. // @author Jason Barnabe
  7. // @grant none
  8. // @include https://yourproductionserver.example/*
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var div = document.createElement("div");
  14. div.innerHTML = "PRODUCTION";
  15. div.style = "position: fixed; right: 0; bottom: 0; font-size: 80px; pointer-events: none; color: red; opacity: 0.3; padding: 1em; z-index: 1000000";
  16. document.body.appendChild(div);
  17. })();