diff --git a/background.js b/background.js
index 696f161..ff4dd2e 100644
--- a/background.js
+++ b/background.js
@@ -4,7 +4,7 @@ const APPLICABLE_PROTOCOLS = ["http:", "https:"];
Only operates on tabs whose URL's protocol is applicable. */
function initializePageAction(tab) {
if (protocolIsApplicable(tab.url)) {
- browser.pageAction.setIcon({tabId: tab.id, path: "icons/icon.svg"});
+ browser.pageAction.setIcon({tabId: tab.id, path: "icons/icon-bw.svg"});
browser.pageAction.setTitle({tabId: tab.id, title: 'Swap domains'});
browser.pageAction.show(tab.id);
}
diff --git a/icons/icon-bw.svg b/icons/icon-bw.svg
new file mode 100644
index 0000000..185a3b7
--- /dev/null
+++ b/icons/icon-bw.svg
@@ -0,0 +1 @@
+
diff --git a/icons/icon.svg b/icons/icon.svg
index 185a3b7..46e2444 100644
--- a/icons/icon.svg
+++ b/icons/icon.svg
@@ -1 +1 @@
-
+
\ No newline at end of file
diff --git a/manifest.json b/manifest.json
index 156a7d0..e940ebd 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Domain Swapper",
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "Jump between hostnames but keep the rest of your current URL path!",
"icons": {
"48": "icons/icon.svg",