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 0aaf49e commit 822e624Copy full SHA for 822e624
src/pages/options/widgets/general.js
@@ -22,7 +22,7 @@ async function exportSettings() {
22
options.version = browser.runtime.getManifest().version
23
let resultString = JSON.stringify(options, null, " ")
24
exportSettingsElement.href = "data:application/json;base64," + btoa(resultString)
25
- exportSettingsElement.download = "libredirect-settings.json"
+ exportSettingsElement.download = `libredirect-settings-v${options.version}.json`
26
return
27
}
28
exportSettings()
0 commit comments