Remove AppMock

Remove the annoying plugin

  1. // ==UserScript==
  2. // @name Remove AppMock
  3. // @namespace http://tampermonkey.net/
  4. // @version 2025-03-06
  5. // @description Remove the annoying plugin
  6. // @author zerosrat
  7. // @match https://qnh.shangou.test.meituan.com/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=meituan.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Your code here...
  17.  
  18. setInterval(() => {
  19. const appMockBtns = document.querySelectorAll('.app-mock-button')
  20. appMockBtns?.forEach(node => node.remove())
  21. }, 3000)
  22. })();