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": "KaTeXGPT - ChatGPT & DeepSeek to Word Equation Converter", "version": "1.3.2", "description": "Converts ChatGPT and DeepSeek equations into Word-compatible format with a single click. Perfect for students and researchers!", "author": "Federico Granata", "permissions": [ "activeTab", "clipboardWrite" ], "action": { "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chatgpt.com\/*", "https:\/\/chat.openai.com\/*", "https:\/\/chat.deepseek.com\/*" ], "css": [ "styles.css", "popup.css" ], "js": [ "katex.min.js", "confetti.js", "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "popup.html", "popup.css" ], "matches": [ "https:\/\/chatgpt.com\/*", "https:\/\/chat.openai.com\/*", "https:\/\/chat.deepseek.com\/*" ] } ], "background": { "service_worker": "background.js" } }