{ "name": "Real ChatGPT Extension", "description": "Context Menu Action. Redirect selected text to ChatGPT browser tab, copy response, close tab & switch back to origin tab", "author": "Samet G", "permissions": [ "contextMenus", "scripting", "activeTab", "tabs", "clipboardWrite" ], "host_permissions": [ "https://chatgpt.com/*" ], "version": "0.1.1", "manifest_version": 3, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html", "default_icon": {} }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http://*/*", "https://*/*" ], "run_at": "document_end", "js": [ "contentScript.js" ], "css": [ "contentScript.css" ] } ] }