diff --git a/data_srcset.js b/data_srcset.js index 2a15fba..f4734e6 100644 --- a/data_srcset.js +++ b/data_srcset.js @@ -5,6 +5,7 @@ // @match https://kotaku.com/* // @match https://*.gizmodo.com/* // @match https://www.latimes.com/* +// @match https://www.videogameschronicle.com/* // ==/UserScript== function fixSrcset(element) { @@ -18,6 +19,7 @@ function fixSrcset(element) { function fixImages() { for (let img of document.getElementsByTagName('img')) { fixSrcset(img); + img.style.opacity = 1; } for (let img of document.getElementsByTagName('source')) { fixSrcset(img);