jmpress のソース コードを見ると、クロスオリジン iframe メッセージングに由来しています。基本的にjmpressはこれを行います:
window.addEventListener("message", function(event) {
// We do not test orgin, because we want to accept messages
// from all orgins
try {
var json = JSON.parse(event.data);
switch(json.type) {
case "select":
// TODO SECURITY filter targetId
$.each(eventData.settings.presentationMode.transferredValues, function(idx, name) {
eventData.current[name] = json[name];
});
$(eventData.jmpress).jmpress("select", {step: "#"+json.targetId, substep: json.substep}, json.reason);
break;
case "listen":
current.selectMessageListeners.push(event.source);
break;
case "ok":
clearTimeout(current.presentationPopupTimeout);
break;
case "read":
try {
event.source.postMessage(JSON.stringify({type: "url", url: window.location.href, notesUrl: eventData.settings.presentationMode.notesUrl}), "*");
} catch(e) {
$.error("Cannot post message to source: " + e);
}
break;
default:
throw "Unknown message type: " + json.type;
}
} catch(e) {
$.error("Recieved message is malformed: " + e);
}
});
そのため、メイン ウィンドウに投稿するすべての iframe は、このイベント ハンドラーを通過し、無効な JSON を渡すとエラーをログに記録します。メイン ウィンドウにメッセージを投稿する Facebook の iframe が Web サイトにあるようです。それらをすべて削除して、エラーが消えるかどうかを確認してください。