var stampSerialize = Annotations.StampAnnotation.prototype.serialize;
console.log('Chrome StampAnnotation patch applied');Annotations.StampAnnotation.prototype.serialize = function(element) {
stampSerialize.apply(this, arguments);
var imagedataEl = element.querySelector('imagedata');
if (imagedataEl) {
var imagedata = imagedataEl.textContent.split('%0A').join('');
imagedataEl.textContent = imagedata;
}
};