summaryrefslogtreecommitdiff
path: root/background.js
diff options
context:
space:
mode:
Diffstat (limited to 'background.js')
-rw-r--r--background.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/background.js b/background.js
index a806e71..7718789 100644
--- a/background.js
+++ b/background.js
@@ -4,6 +4,7 @@ function downloadResource(info, tab) {
let filename = url.substring(url.lastIndexOf('/')+1)
if (filename.indexOf('?') !== false)
filename = filename.substring(0, filename.indexOf('?'))
+ filename = safeFileName(filename)
chrome.downloads.download({
url,
@@ -16,4 +17,10 @@ chrome.contextMenus.create({
"title": "Save to Downloads…",
"contexts": ["image"],
"onclick": downloadResource
-}) \ No newline at end of file
+})
+
+function safeFileName(str) {
+ if (/[|"*?:<>]/.test(str))
+ str = str.replace(/[\/\\|"*?:<>]/g, '_');
+ return str
+} \ No newline at end of file