dont show new login notification bar on bitwarden websites

This commit is contained in:
Kyle Spearrin 2017-01-29 21:32:35 -05:00
parent 8692b3b40f
commit 17e36e7a4d
1 changed files with 9 additions and 7 deletions

View File

@ -3,6 +3,7 @@
formData = [],
barType = null;
if (window.location.hostname.indexOf('bitwarden.com') === -1) {
chrome.storage.local.get('disableAddLoginNotification', function (obj) {
if (!obj || !obj['disableAddLoginNotification']) {
chrome.runtime.sendMessage({
@ -10,6 +11,7 @@
});
}
});
}
chrome.runtime.onMessage.addListener(function (msg, sender, sendResponse) {
if (msg.command === 'openNotificationBar') {