Greasy Fork镜像 支持简体中文。

Production warning

Warns you when you are in production

目前為 2020-03-14 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Production warning
  3. // @namespace https://gf.qytechs.cn/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. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址