@@ -144,6 +144,7 @@ async function saveContent(message, tab) {
options.shadowRoots = message.shadowRoots;
options.referrer = message.referrer;
options.updatedResources = message.updatedResources;
+ options.worklets = message.worklets;
options.adoptedStyleSheets = message.adoptedStyleSheets;
options.visitDate = new Date(message.visitDate);
options.backgroundTab = true;
@@ -304,13 +304,14 @@ function savePage(docData, frames, { autoSaveUnload, autoSaveDiscard, autoSaveRe
videos: docData.videos,
referrer: docData.referrer,
adoptedStyleSheets: docData.adoptedStyleSheets,
+ worklets: docData.worklets,
frames: frames,
url: location.href,
updatedResources,
visitDate,
autoSaveUnload,
autoSaveDiscard,
- autoSaveRemove
+ autoSaveRemove,
});
}