Greasy Fork is available in English.

mvcat

mvcat跳过二维码

  1. // ==UserScript==
  2. // @name mvcat
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description mvcat跳过二维码
  6. // @author tpcy
  7. // @match https://www.mvcat.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function () {
  14. 'use strict';
  15. let Container = document.createElement('div');
  16. Container.id = "sp-ac-container";
  17. Container.style.position="fixed"
  18. Container.style.left="20px"
  19. Container.style.top="20px"
  20. Container.style['z-index']="999999"
  21. Container.innerHTML =`<button id="myCustomize" style="position:absolute; left:30px; top:20px;background:black;color:white;">
  22. 方铖nb
  23. </button>
  24. `
  25. Container.onclick = function (){
  26. document.getElementsByClassName('wxfollow')[0].style.display='none';
  27. return;
  28. };
  29. document.body.appendChild(Container);
  30. })();