Вот так?
// ==UserScript==
// @name MainJS
// @description Iframe
// @include [url]https://web-base.*[/url]
// ==/UserScript==
//alert('test');
//var urr;
var arr = [];
arr.push('https://web-base/index/');
var iframe = document.getElementById('BaseFrame');
function refresh( ) {
var lastItem = arr[arr.length-1];
urr = iframe.contentWindow.location;
if (urr !== lastItem) {
arr.push(urr);
alert(lastItem);
}
else {
alert(arr);
}
}
if (iframe.attachEvent) iframe.attachEvent('onload', refresh);
else iframe.attachEvent('load', refresh, false);