Display high resolution images on wykop.pl
目前為
// ==UserScript==
// @name Better wykop
// @namespace http://tampermonkey.net/
// @version 0.1.0
// @description Display high resolution images on wykop.pl
// @author You
// @match *://*.wykop.pl
// @grant none
// ==/UserScript==
(() => {
const comments = document.querySelectorAll('.media-content');
if (comments) {
comments.forEach((comment) => {
const originalSrc = comment.querySelector('.description a');
const img = comment.querySelector('a img');
if (originalSrc && img) {
img.setAttribute('src', originalSrc.getAttribute('href') || '')
}
})
}
})()