NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name NamuHateSVG
// @namespace https://namu.wiki/*
// @version 1.0
// @description SVG 파일 대신 정상 파일이 표시되게 합니다.
// @author kjs1301
// @match https://namu.wiki/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var img = document.getElementsByTagName('img');
for (var i=0; i<img.length; i++) {
if (img[i].getAttribute("class") == "wiki-image") {
img[i].src=img[i].getAttribute("data-original");
}
}
})();