real-chatgpt-extension/manifest.json
2025-04-04 14:02:41 +02:00

30 lines
661 B
JSON

{
"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",
"storage"
],
"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"
}
}