diff --git a/src/_locales/en/messages.json b/src/_locales/en/messages.json
index 5c29bd96f8..a3cc555bfc 100644
--- a/src/_locales/en/messages.json
+++ b/src/_locales/en/messages.json
@@ -622,5 +622,29 @@
"noneFolder": {
"message": "(none)",
"description": "(none) - this is the folder for uncategorized sites"
+ },
+ "features": {
+ "message": "Features",
+ "description": "Features"
+ },
+ "gaDesc": {
+ "message": "We use Google Analytics to better learn how the extension is being used so that we can make it better. All data collection is completely anonymous.",
+ "description": "We use Google Analytics to better learn how the extension is being used so that we can make it better. All data collection is completely anonymous."
+ },
+ "disableAddSiteNotification": {
+ "message": "Disable Add Site Notification",
+ "description": "Disable Add Site Notification"
+ },
+ "addSiteNotificationDesc": {
+ "message": "The \"Add Site Notification\" automatically prompts you to save new sites to your vault whenever you log into them for the first time.",
+ "description": "The \"Add Site Notification\" automatically prompts you to save new sites to your vault whenever you log into them for the first time."
+ },
+ "notificationAddDesc": {
+ "message": "Should bitwarden remember this password for you?",
+ "description": "Should bitwarden remember this password for you?"
+ },
+ "notificationAddSave": {
+ "message": "Yes, Save Now",
+ "description": "Yes, Save Now"
}
}
diff --git a/src/content/notificationBar.js b/src/content/notificationBar.js
index dad51cf864..df6c356970 100644
--- a/src/content/notificationBar.js
+++ b/src/content/notificationBar.js
@@ -3,8 +3,12 @@
formData = [],
barType = null;
- chrome.runtime.sendMessage({
- command: 'bgCollectPageDetails'
+ chrome.storage.local.get('disableAddSiteNotification', function (obj) {
+ if (!obj || !obj['disableAddSiteNotification']) {
+ chrome.runtime.sendMessage({
+ command: 'bgCollectPageDetails'
+ });
+ }
});
chrome.runtime.onMessage.addListener(function (msg, sender, sendResponse) {
diff --git a/src/notification/bar.html b/src/notification/bar.html
index 3172d88547..55194ea5e5 100644
--- a/src/notification/bar.html
+++ b/src/notification/bar.html
@@ -10,13 +10,13 @@