From b5908c8c6492fd6ffba708a1b479a6bcaa03e5c9 Mon Sep 17 00:00:00 2001 From: Kaloyan Kosev Date: Thu, 25 Jul 2024 23:08:23 +0300 Subject: [PATCH 1/4] Add: manifest browser extension id --- src/manifest.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/manifest.json b/src/manifest.json index 86d0ac8..e27f8af 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -2,6 +2,9 @@ "name": "Crypto Tab", "description": "Replace the New Tab page with Bitcoin price chart", "version": "1.1.0", + "browser_specific_settings": { + "gecko": { "id": "crypto-tab.com" } + }, "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", From 174a7387fbcc72866a9ae9828279cdd6999b2933 Mon Sep 17 00:00:00 2001 From: Kaloyan Kosev Date: Thu, 25 Jul 2024 23:12:16 +0300 Subject: [PATCH 2/4] Change: comply with the format Mozilla requires --- src/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manifest.json b/src/manifest.json index e27f8af..8e6cba6 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -3,7 +3,7 @@ "description": "Replace the New Tab page with Bitcoin price chart", "version": "1.1.0", "browser_specific_settings": { - "gecko": { "id": "crypto-tab.com" } + "gecko": { "id": "extension@crypto-tab.com" } }, "icons": { "16": "icons/icon16.png", From dfe62d58f4320ef9af41916743c5c85aa2b6c5a8 Mon Sep 17 00:00:00 2001 From: Kaloyan Kosev Date: Thu, 25 Jul 2024 23:14:00 +0300 Subject: [PATCH 3/4] Fixed: should match the ID of the add-on on AMO --- src/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manifest.json b/src/manifest.json index 8e6cba6..4059cac 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -3,7 +3,7 @@ "description": "Replace the New Tab page with Bitcoin price chart", "version": "1.1.0", "browser_specific_settings": { - "gecko": { "id": "extension@crypto-tab.com" } + "gecko": { "id": "904ad0ba-0f9e-4b2d-a868-a467138ba9df" } }, "icons": { "16": "icons/icon16.png", From 107fc290ccc3fbeb35bfdc0d09fd116cc67775f2 Mon Sep 17 00:00:00 2001 From: Kaloyan Kosev Date: Thu, 25 Jul 2024 23:15:39 +0300 Subject: [PATCH 4/4] Fixed: okay, it needs parentheses... --- src/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manifest.json b/src/manifest.json index 4059cac..0d0f852 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -3,7 +3,7 @@ "description": "Replace the New Tab page with Bitcoin price chart", "version": "1.1.0", "browser_specific_settings": { - "gecko": { "id": "904ad0ba-0f9e-4b2d-a868-a467138ba9df" } + "gecko": { "id": "{904ad0ba-0f9e-4b2d-a868-a467138ba9df}" } }, "icons": { "16": "icons/icon16.png",