We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01a08ee commit 0127b9aCopy full SHA for 0127b9a
pages/options.js
@@ -454,7 +454,7 @@ if (global.DomUtils) { // global.DomUtils is not defined when running our tests.
454
455
// Create the blob in the background page so it isn't garbage collected when the page closes in FF.
456
const bgWin = chrome.extension.getBackgroundPage();
457
- const blob = new bgWin.Blob([ JSON.stringify(backup, null, 2) ]);
+ const blob = new bgWin.Blob([ JSON.stringify(backup, null, 2) + "\n" ]);
458
$("backupLink").href = bgWin.URL.createObjectURL(blob);
459
};
460
0 commit comments