Add washingtonpost.com

This commit is contained in:
Juhani Krekelä 2022-06-13 21:08:57 +03:00
parent de075b321d
commit f2e95a2a03
1 changed files with 14 additions and 0 deletions

14
wapo.js Normal file
View File

@ -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();