diff --git a/manifest.json b/manifest.json index 1dd1b0590..c497a11f7 100644 --- a/manifest.json +++ b/manifest.json @@ -3,7 +3,7 @@ "name": "'Improve YouTube!' (Video & YouTube Tools)🎧", "short_name": "ImprovedTube", "description": "__MSG_description_ext__", - "version": "3.808", + "version": "3.809", "default_locale": "en", "icons": { "128": "icons/128.png", diff --git a/ui/script.js b/ui/script.js index e328662b0..0e0d5455e 100644 --- a/ui/script.js +++ b/ui/script.js @@ -5667,7 +5667,13 @@ function exportData() { var blob; try { - blob = new Blob([JSON.stringify(satus.storage.data)], { + var data = Object.assign({}, satus.storage.data); + + delete data.analyzer; + delete data.blacklist; + delete data.watched; + + blob = new Blob([JSON.stringify(data)], { type: 'application/json;charset=utf-8' }); } catch (error) {