Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chatgpt Continue Generator", "version": "1.1.0", "description": "Auto continue generate for ChatGPT", "icons": { "16": "icons\/icon-16.png", "19": "icons\/icon-19.png", "22": "icons\/icon-22.png", "32": "icons\/icon-32.png", "38": "icons\/icon-38.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "128": "icons\/icon-128.png", "256": "icons\/icon-256.png", "512": "icons\/icon-512.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Chatgpt Continue Generator", "default_popup": "popup.html" }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ] }