Sehen Sie ChatGPT-Antworten neben Suchergebnissen. Fassen Sie jede Webseite oder jedes YouTube-Video mit Hilfe von AI-gesteuertem GPT-4 zusammen.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"background": {
"service_worker": "js/sevice_worker.js"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"exclude_matches": [
"https://chat.openai.com/*"
],
"js": [
"./js/content.js"
],
"css": [
"./css/content.css"
],
"all_frames": false
},
{
"run_at": "document_start",
"matches": [
"https://chat.openai.com/"
],
"js": [
"./js/gptContent.js"
],
"css": [
"./css/gptc.css"
],
"all_frames": true
}
],
"action": {
"default_icon": {
"128": "icons/icon.png"
},
"default_title": "__MSG_appName__",
"default_popup": "popup.html"
},
"icons": {
"128": "icons/icon.png"
},
"permissions": [
"storage",
"contextMenus",
"webRequest"
],
"host_permissions": [
"*://*/*"
],
"web_accessible_resources": [
{
"resources": [
"*"
],
"matches": [
"*://*/*"
]
}
],
"version": "1.0.5",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}