imgfixer/wapo.js

15 lines
302 B
JavaScript

// ==UserScript==
// @name Washington Post image deblurrer
// @version 1
// @grant none
// @match https://www.washingtonpost.com/*
// ==/UserScript==
function deBlur() {
for (let figure of document.getElementsByTagName('figure')) {
figure.firstChild.style.filter='';
}
}
deBlur();