build: extension working for chrome, think it broke firefox though

This commit is contained in:
Mathew Guest 2024-06-08 00:52:45 -06:00
parent 1600e6c637
commit b50507be65

@ -1,16 +1,12 @@
{
"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",
"<all_urls>"
"activeTab"
],
"browser_action": {
"default_popup": "popup.html",
"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": ["<all_urls>"]
}
]
}