From b50507be65510c1ea3c349a10787c9577fd3a064 Mon Sep 17 00:00:00 2001 From: Mathew Guest Date: Sat, 8 Jun 2024 00:52:45 -0600 Subject: [PATCH] build: extension working for chrome, think it broke firefox though --- manifest.json | 27 ++++++++++----------------- 1 file changed, 10 insertions(+), 17 deletions(-) diff --git a/manifest.json b/manifest.json index 2592e38..f35c235 100644 --- a/manifest.json +++ b/manifest.json @@ -1,17 +1,13 @@ { - "manifest_version": 2, "name": "Search with ChatGPT", + "description": "Search using ChatGPT query.", "version": "1.0", - "description": "A Firefox extension to search using ChatGPT.", + "manifest_version": 3, "permissions": [ - "activeTab", - "webRequest", - "webRequestBlocking", - "" + "activeTab" ], - "browser_action": { - "default_popup": "popup.html", - "default_icon": { + "action": { + "default_icon": { "48": "icons/favicon.png" } }, @@ -20,12 +16,9 @@ "name": "ChatGPT Search", "keyword": "gpt", "search_url": "https://chatgpt.com?q={searchTerms}", - "favicon_url": "https://chatgpt.com/favicon.png" + "favicon_url": "https://chatgpt.com/favicon.png", + "is_default": true, + "encoding": "UTF-8" } - }, - "content_scripts": [ - { - "matches": [""] - } - ] -} + } +} \ No newline at end of file