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": "ChromeGPT", "version": "1.3", "description": "Copy formulas from ChatGPT into Word, Excel or LaTeX format by right click! Other websites including wikipedia are also compatible!", "permissions": [ "notifications", "storage" ], "icons": { "16": "icon\/16.png", "32": "icon\/32.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "content_scripts": [ { "js": [ "chromegpt.js" ], "matches": [ "https:\/\/chatgpt.com\/*", "https:\/\/*.wikipedia.org\/*" ] } ], "web_accessible_resources": [ { "resources": [ "svg\/*.svg", "css\/*.css" ], "matches": [ "<all_urls>" ] } ] }