Fix the old site images by reverting source to http
Ajankohdalta
// ==UserScript==
// @name Stealth 316 https image fix
// @namespace http://resesona.wordpress.com/
// @version 0.1
// @description Fix the old site images by reverting source to http
// @author You
// @match https://www.stealth316.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
var imgs = document.getElementsByTagName("img");
for(var i=0, l=imgs.length; i<l; i++) {
imgs[i].src = imgs[i].src.replace('https://','http://');
}
})();