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