🔥无图模式🔥

隐藏网站的图片

目前為 2023-08-22 提交的版本,檢視 最新版本

// ==UserScript==
// @name        🔥无图模式🔥
// @description 隐藏网站的图片
// @namespace   https://github.com/lyndonliu89757/noPic
// @version     0.0.2
// @author      l.lyndon
// @match       *://*.zhihu.com/*
// @match       *://*.*.*/*
// @license     MIT License
// @run-at      document-start
// @grant       unsafeWindow
// @grant       GM_xmlhttpRequest
// ==/UserScript==
(function() {
  'use strict';

  window.addEventListener('load', () => {
    Array.from(document.getElementsByTagName('img')).map(i => i.style.display = 'none');
  });
})();