Skip to content

Instantly share code, notes, and snippets.

@Qofar
Created September 13, 2014 03:42
Show Gist options
  • Save Qofar/564f0c46c49037b5f0e2 to your computer and use it in GitHub Desktop.
Save Qofar/564f0c46c49037b5f0e2 to your computer and use it in GitHub Desktop.
Chromeでファイルを保存する際、同名ファイルが存在する場合は確認ダイアログを表示
chrome.downloads.onDeterminingFilename.addListener(function(item, suggest) {
suggest({filename: item.filename, conflictAction: "prompt"});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment