Files
Noi/extensions/noi-export-chatgpt/manifest.json
2024-05-20 22:45:15 +08:00

16 lines
451 B
JSON

{
"manifest_version": 3,
"name": "@noi/export-chatgpt",
"version": "0.1.1",
"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://chatgpt.com/*"],
"js": ["main.js"],
"css": ["style.css"],
"run_at": "document_end",
"world": "MAIN"
}
]
}