mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
basic auth prompts for https
This commit is contained in:
@@ -264,7 +264,7 @@ chrome.webRequest.onAuthRequired.addListener(function (details, callback) {
|
||||
callback();
|
||||
});
|
||||
}
|
||||
}, { urls: ['http://*/*'] }, [bg_utilsService.isFirefox() ? 'blocking' : 'asyncBlocking']);
|
||||
}, { urls: ['http://*/*', 'https://*/*'] }, [bg_utilsService.isFirefox() ? 'blocking' : 'asyncBlocking']);
|
||||
|
||||
chrome.webRequest.onCompleted.addListener(completeAuthRequest, { urls: ['http://*/*'] });
|
||||
chrome.webRequest.onErrorOccurred.addListener(completeAuthRequest, { urls: ['http://*/*'] });
|
||||
|
||||
Reference in New Issue
Block a user