Files
Project-Thoth/applications/chatgpt-capture/manifest.json
T

42 lines
1.1 KiB
JSON

{
"manifest_version": 3,
"name": "Project Thoth Capture",
"description": "Capture ChatGPT conversations for Project Thoth.",
"version": "0.1.0",
"permissions": ["activeTab", "scripting", "downloads"],
"host_permissions": [
"https://chatgpt.com/*",
"https://chat.openai.com/*"
],
"action": {
"default_title": "Save to Project Thoth",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"background": {
"service_worker": "src/background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"src/chatgptConnectorRuntime.js",
"src/connectors/chatgpt/chatgptConnector.js",
"src/connectors/chatgpt/chatgptDiscovery.js",
"src/connectors/chatgpt/chatgptPreprocessor.js",
"src/connectors/chatgpt/chatgptTurnRenderer.js",
"src/core/conversationModel.js",
"src/core/htmlToMarkdown.js",
"src/core/markdownSerializer.js"
],
"matches": [
"https://chatgpt.com/*",
"https://chat.openai.com/*"
]
}
]
}