Greasy Fork is available in English.

禁止图片加载

clear image

  1. // ==UserScript==
  2. // @name 禁止图片加载
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description clear image
  6. // @author Zszen
  7. // @match https://*/*
  8. // @require https://cdn.staticfile.org/jquery/3.3.1/jquery.min.js
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. $(function(){
  15. $('div img').remove();//移除所有在div中的图片
  16. $('canvas').remove();
  17. })
  18. // Your code here...
  19. })();