Remove Gaia's image cache from the image source
目前為
// ==UserScript==
// @name No Image Cache
// @description Remove Gaia's image cache from the image source
// @namespace gaiarch_v3
// @match http://*.gaiaonline.com/*
// @version 2.2
// @grant none
// ==/UserScript==
(function() {
var image = document.getElementsByTagName('img');
var regex = /(http:\/\/img-cache.cdn.gaiaonline.com\/[a-z0-9]+\/)/;
var img, res;
for(idx in image) {
img = image[idx];
res = regex.test(img.src);
if(res) {
img.src = img.src.replace(regex,'');
}
}
})();