From 138578af39fdd790034db3b64095abc1ce6b35ac Mon Sep 17 00:00:00 2001 From: DaAwesomeP Date: Sun, 12 Mar 2017 23:03:14 -0500 Subject: [PATCH] fix manifest for MS Edge (still nonfunctional in Edge) --- src/drivers/webextension/manifest.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/drivers/webextension/manifest.json b/src/drivers/webextension/manifest.json index 5e57b50ae..c447013ee 100644 --- a/src/drivers/webextension/manifest.json +++ b/src/drivers/webextension/manifest.json @@ -1,4 +1,6 @@ { "name": "Wappalyzer", + "short_name": "Wappalyzer", + "author": "AliasIO", "homepage_url": "https://wappalyzer.com/", "description": "Identify web technologies", "version": "3", @@ -10,12 +12,15 @@ "128": "images/icon_128.png" }, "page_action": { - "default_icon": "images/icon_32.png", + "default_icon": { + "32": "images/icon_32.png" + }, "default_title": "Wappalyzer", "default_popup": "popup.html" }, "background": { - "page": "background.html" + "page": "background.html", + "persistent": true }, "content_scripts": [ { "matches": [ "http://*/*", "https://*/*" ], @@ -36,6 +41,7 @@ "web_accessible_resources": [ "js/inject.js" ], + "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": false