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 search within Google Search", "version": "1.1", "description": "Adds buttons to search queries on ChatGPT and Perplexity", "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.google.com\/*", "*:\/\/www.google.com\/search*" ], "js": [ "content.js" ], "css": [ "styles.css" ], "run_at": "document_end", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "icons\/*" ], "matches": [ "*:\/\/www.google.com\/*" ] } ] }