imgfixer/wapo.js

15 lines
302 B
JavaScript
Raw Normal View History

2022-06-13 18:08:57 +00:00
// ==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();