Files
Noi/extensions/noi-export-chatgpt/manifest.json
2024-01-31 17:38:27 +08:00

16 lines
452 B
JSON

{
"manifest_version": 3,
"name": "@noi/export-chatgpt",
"version": "0.1.0",
"homepage": "https://github.com/lencx/Noi/tree/main/extensions/noi-export-chatgpt",
"description": "ChatGPT chat history export, supports PDF, Image, and Markdown formats.",
"content_scripts": [
{
"matches": ["https://*.openai.com/*"],
"js": ["main.js"],
"css": ["style.css"],
"run_at": "document_end",
"world": "MAIN"
}
]
}