Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Remove maintenance menu
  3. // @namespace https://www.canvaspeople.com/
  4. // @version 0.1
  5. // @description Prevent use of the clear cache feature on production!
  6. // @author You
  7. // @match https://www.canvaspeople.com/Admin
  8. // @match https://www.canvaspeople.com/Admin/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. document.getElementsByClassName("maintenance-menu")[0].remove()
  16. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement