diff --git a/wapo.js b/wapo.js new file mode 100644 index 0000000..4693e3e --- /dev/null +++ b/wapo.js @@ -0,0 +1,14 @@ +// ==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();