From 2c193ed090fb74eaae65849c0932d3dc5fde3c2d Mon Sep 17 00:00:00 2001 From: Deepjyoti Barman Date: Wed, 1 Feb 2023 14:10:51 +0530 Subject: [PATCH] Add extension ID for mozilla builds --- manifest.json | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index 23a39c8..0fc55cc 100644 --- a/manifest.json +++ b/manifest.json @@ -2,15 +2,21 @@ "manifest_version": 3, "name": "minimal-startpage", "short_name": "minimal-startpage", - "version": "1", + "version": "1.1", "description": "Overrides the browsers newtab page with a custom startpage.", "author": "deepjyoti30", - "icons": { "64": "img/icon64.png" }, "chrome_url_overrides": { "newtab": "index.html" }, - "permissions": ["storage"] -} + "permissions": [ + "storage" + ], + "browser_specific_settings": { + "gecko": { + "id": "minimal-startpage@deepjyoti30.dev" + } + } +} \ No newline at end of file