🔥无图模式🔥

隐藏网站的图片

Tính đến 22-08-2023. Xem phiên bản mới nhất.

// ==UserScript==
// @name        🔥无图模式🔥
// @description 隐藏网站的图片
// @namespace   https://github.com/lyndonliu89757/noPic
// @version     0.0.1
// @author      l.lyndon
// @match       *://*.zhihu.com/*
// @match       *://*.*.*/*
// @license     MIT License
// @run-at      document-start
// @grant       unsafeWindow
// @grant       GM_xmlhttpRequest
// ==/UserScript==
(function() {
  'use strict';
  Array.from(document.getElementsByTagName('img')).map(i => i.style.display = 'none');
})();