mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 05:13:29 +00:00
check for chrome.webRequest.onAuthRequired avail
This commit is contained in:
@@ -230,6 +230,7 @@ var bg_isBackground = true,
|
||||
}
|
||||
});
|
||||
|
||||
if (chrome.webRequest && chrome.webRequest.onAuthRequired) {
|
||||
chrome.webRequest.onAuthRequired.addListener(function (details, callback) {
|
||||
if (!details.url || pendingAuthRequests.indexOf(details.requestId) != -1) {
|
||||
if (callback) {
|
||||
@@ -295,6 +296,7 @@ var bg_isBackground = true,
|
||||
pendingAuthRequests.splice(i, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var buildingContextMenu = false;
|
||||
function buildContextMenu(callback) {
|
||||
|
||||
Reference in New Issue
Block a user