Hide Images

Blocks images from loading on all sites

当前为 2023-01-25 提交的版本,查看 最新版本

// ==UserScript==
// @name         Hide Images
// @namespace    CertainPerformance
// @description  Blocks images from loading on all sites
// @version      1
// @match        https://*
// @grant        none
// @run-at       document-start
// ==/UserScript==

document.head.appendChild(document.createElement('style')).textContent = `
img {
  display: none !important
}
`;