mirror of
https://git.zavage.net/Zavage-Software/search-with-chatgpt-powered-by-openai-extension-chrome.git
synced 2024-11-21 11:50:25 -07:00
32 lines
907 B
JSON
32 lines
907 B
JSON
{
|
|
"name": "Search with ChatGPT powered by OpenAI",
|
|
"description": "Search using ChatGPT query.",
|
|
"version": "1.0",
|
|
"manifest_version": 3,
|
|
"permissions": [
|
|
"activeTab"
|
|
],
|
|
"icons": {
|
|
"128": "images/powered-by-openai-icon-128x128.png",
|
|
"48": "images/powered-by-openai-icon-48x48.png",
|
|
"16": "images/powered-by-openai-icon-16x16.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",
|
|
"is_default": false,
|
|
"encoding": "UTF-8"
|
|
}
|
|
},
|
|
"action": {
|
|
"default_popup": "hello.html",
|
|
"default_icon": {
|
|
"128": "images/powered-by-openai-icon-128x128.png",
|
|
"48": "images/powered-by-openai-icon-48x48.png",
|
|
"16": "images/powered-by-openai-icon-16x16.png"
|
|
}
|
|
}
|
|
} |