plano/demos/use_cases/chatgpt-preference-model-selector/public/manifest.json

36 lines
851 B
JSON

{
"manifest_version": 3,
"name": "RouteGPT",
"version": "0.1.2",
"description": "RouteGPT: Smart Model Routing for ChatGPT.",
"permissions": [
"storage"
],
"host_permissions": [
"https://chatgpt.com/*",
"http://localhost:12000/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' http://localhost:12000"
},
"web_accessible_resources": [
{
"resources": ["index.html", "logo.png"],
"matches": ["https://chatgpt.com/*"]
},
{
"resources": ["pageFetchOverride.js"],
"matches": ["https://chatgpt.com/*"]
}
],
"action": {
"default_popup": "index.html"
},
"content_scripts": [
{
"matches": ["https://chatgpt.com/*"],
"js": ["static/js/content.js"],
"run_at": "document_start"
}
]
}