Blocks images from loading on all sites
// ==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
}
`;