Temm / Image Deblur

// ==UserScript==
// @name         Image Deblur
// @version      0.1
// @description  Disable Image Smoothing, useful for Zoomed-in/Lowres Images and Pixel Art.
// @author       Temm
// @copyright    2020, Temm (https://openuserjs.org/users/Temm)
// @license      MIT
// @match        http*://*/*.png
// @match        file://*.png
// @match        http*://*/*
// @grant        none
// ==/UserScript==

(function() {
  const sheet = document.createElement('style');
  sheet.innerHTML = 'img { image-rendering: pixelated; }';

  document.head.appendChild(sheet);
})();