diff --git a/src/background.js b/src/background.js
index be82e3d..3085cdb 100644
--- a/src/background.js
+++ b/src/background.js
@@ -728,7 +728,7 @@ function onExtensionInstalled(details) {
chrome.notifications.create(id, {
title: title,
message: message,
- iconUrl: "icon-lock.png",
+ iconUrl: "icon.png",
type: "basic"
});
};
diff --git a/src/icon-lock.png b/src/icon-lock.png
deleted file mode 100644
index 38867cf..0000000
Binary files a/src/icon-lock.png and /dev/null differ
diff --git a/src/icon-lock.svg b/src/icon-lock.svg
deleted file mode 100644
index 82fc1a5..0000000
--- a/src/icon-lock.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/src/icon.png b/src/icon.png
new file mode 100644
index 0000000..2cd80cb
Binary files /dev/null and b/src/icon.png differ
diff --git a/src/icon.svg b/src/icon.svg
new file mode 100644
index 0000000..ff9ce86
--- /dev/null
+++ b/src/icon.svg
@@ -0,0 +1,6 @@
+
+
diff --git a/src/manifest-chromium.json b/src/manifest-chromium.json
index c5f5de9..9819c0f 100644
--- a/src/manifest-chromium.json
+++ b/src/manifest-chromium.json
@@ -11,10 +11,10 @@
"scripts": ["js/background.dist.js"]
},
"icons": {
- "128": "icon-lock.png"
+ "128": "icon.png"
},
"browser_action": {
- "default_icon": "icon-lock.png",
+ "default_icon": "icon.png",
"default_popup": "popup/popup.html"
},
"options_ui": {
diff --git a/src/manifest-firefox.json b/src/manifest-firefox.json
index 7eeccbf..871c4dc 100644
--- a/src/manifest-firefox.json
+++ b/src/manifest-firefox.json
@@ -10,10 +10,10 @@
"scripts": ["js/background.dist.js"]
},
"icons": {
- "128": "icon-lock.png"
+ "128": "icon.png"
},
"browser_action": {
- "default_icon": "icon-lock.png",
+ "default_icon": "icon.png",
"default_popup": "popup/popup.html"
},
"options_ui": {