Fix help link on popup

This commit is contained in:
Ajay Ramachandran
2020-12-14 23:56:56 -05:00
parent 9b572609f8
commit 865422eaaa
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ chrome.runtime.onMessage.addListener(function (request, sender, callback) {
chrome.runtime.openOptionsPage();
return;
case "openHelp":
window.open(chrome.runtime.getURL('help/index_en.html'));
chrome.tabs.create({url: chrome.runtime.getURL('help/index_en.html')});
return;
case "sendRequest":
sendRequestToCustomServer(request.type, request.url, request.data).then(async (response) => {