Inspect and view changes in GPT批量问答 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "GPT批量问答",
"author": "Michael",
"version": "1.0.3",
"description": "通过用ChatGPT批量回答你的问题",
"icons": {
"16": "/image/icon.png",
"48": "/image/icon.png",
"128": "/image/icon.png"
},
"background": {
"page": "/html/background.html"
},
"permissions": [],
"content_scripts": [
{
"matches": [
"https://chat.openai.com/*",
"http://chat.openai.com/*"
],
"js": [
"/js/content-script.js",
"/js/worker.js",
"/js/jquery.js",
"/js/xlsx.core.min.js"
],
"css": [
"/css/style.css"
],
"run_at": "document_start"
}
],
"applications": {
"gecko": {
"id": "listing-gpt@cidgur"
}
}
}