From 7fdad98c63e64dbbf9a7e931a0878fdf6c4c355e Mon Sep 17 00:00:00 2001 From: Kshitiz-Mhto Date: Mon, 6 Feb 2023 22:45:32 +0545 Subject: [PATCH] migrate from manifest V2 to V3 --- browser-extension/manifest.json | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/browser-extension/manifest.json b/browser-extension/manifest.json index c879898..f48751d 100755 --- a/browser-extension/manifest.json +++ b/browser-extension/manifest.json @@ -1,14 +1,24 @@ { - "manifest_version": 2, + "manifest_version": 3, "name": "Starfix", "version": "1.1", - "description": "Extension for Starfix. Adds an \"Open in IDE\" button on Github. Supports easy switching b/w cloning Protocols viz HTTPS and SSH", + "description": "Extension for Starfix. Adds an \"Open in IDE\" button on Github. Supports easy switching b/w cloning Protocols viz HTTPS and SSH", "author": "Fahad Israr", - "icons": { "16": "starfix_icon.png", + "icons": { + "16": "starfix_icon.png", "32": "starfix_icon.png", - "48": "starfix_icon.png" }, - "browser_action": { "default_popup": "./options.html","default_title": "Starfix Configuration","default_icon":"./starfix_icon.png" }, + "48": "starfix_icon.png" + }, + "action": { + "default_popup": "./options.html", + "default_title": "Starfix Configuration", + "default_icon": { + "16": "starfix_icon.png", + "32": "starfix_icon.png", + "48": "starfix_icon.png" + } + }, "options_ui": { "page": "options.html", "open_in_tab": false