search-with-chatgpt-powered.../manifest.json

32 lines
681 B
JSON

{
"manifest_version": 2,
"name": "Search with ChatGPT",
"version": "1.0",
"description": "A Firefox extension to search using ChatGPT.",
"permissions": [
"activeTab",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"48": "icons/favicon.png"
}
},
"chrome_settings_overrides": {
"search_provider": {
"name": "ChatGPT Search",
"keyword": "gpt",
"search_url": "https://chatgpt.com?q={searchTerms}",
"favicon_url": "https://chatgpt.com/favicon.png"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"]
}
]
}