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": "EquationLive for ChatGPT", "version": "1.1.0", "homepage_url": "https:\/\/www.equationlive.com", "description": "Render and edit Latex equations directly in your ChatGPT conversations.", "offline_enabled": false, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/api.equationlive.com\/*" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" }, "background": { "service_worker": "background.js" }, "action": { "default_popup": "static\/popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_title": "Equation Live" }, "content_scripts": [ { "matches": [ "https:\/\/chatgpt.com\/*" ], "js": [ "lib\/jquery.min.js", "lib\/mathquill.min.js", "lib\/katex.min.js", "keyboards.js", "content.js" ], "css": [ "lib\/mathquill.css", "lib\/katex.min.css", "static\/styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "lib\/*", "lib\/fonts\/*", "keyboards.js", "static\/styles.css", "config.js" ], "matches": [ "https:\/\/chatgpt.com\/*" ] } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }