mirror of
https://git.zavage.net/Zavage-Software/search-with-chatgpt-powered-by-openai-extension.git
synced 2026-08-10 13:40:29 -06:00
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "Search with ChatGPT powered by OpenAI!",
|
|
"description": "Adds a ChatGPT search engine",
|
|
"manifest_version": 2,
|
|
"author": "Mathew Guest <mat@zavage.net>",
|
|
"homepage_url": "https://zavage-software.com/portfolio/search-with-ChatGPT",
|
|
"version": "1.1",
|
|
"icons": {
|
|
"16": "icons/powered-by-openai-icon-16x16.png",
|
|
"32": "icons/powered-by-openai-icon-32x32.png",
|
|
"48": "icons/powered-by-openai-icon-48x48.png",
|
|
"64": "icons/powered-by-openai-icon-64x64.png",
|
|
"128": "icons/powered-by-openai-icon-128x128.png"
|
|
},
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "{24644f0c-bfcb-4ebd-a16b-bc8a7d154288}",
|
|
"data_collection_permissions": {
|
|
"required": [
|
|
"none"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"permissions": [
|
|
"storage",
|
|
"menus",
|
|
"activeTab"
|
|
],
|
|
"background": {
|
|
"scripts": [
|
|
"background/background.js"
|
|
],
|
|
"type": "module",
|
|
"persistent": false
|
|
},
|
|
"options_ui": {
|
|
"page": "options/options.html",
|
|
"open_in_tab": false,
|
|
"browser_style": false
|
|
},
|
|
"commands": {
|
|
"ask-chatgpt": {
|
|
"suggested_key": {
|
|
"default": "Alt+Shift+G"
|
|
},
|
|
"description": "Ask ChatGPT about the selected text"
|
|
}
|
|
},
|
|
"chrome_settings_overrides": {
|
|
"search_provider": {
|
|
"name": "ChatGPT",
|
|
"search_url": "https://chatgpt.com?q={searchTerms}",
|
|
"keyword": "gpt",
|
|
"favicon_url": "https://zavage-software.com/static/ChatGPT-favicon.png",
|
|
"is_default": false,
|
|
"encoding": "UTF-8"
|
|
}
|
|
}
|
|
}
|