Utilize ChatGPT technology to analyze web pages and online-video, swiftly generating the summaries you need.
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,
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "1.0.3",
"icons": {
"128": "assets/128.png"
},
"background": {
"service_worker": "javascripts/worker.js"
},
"action": {},
"options_ui": {
"page": "settings.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"css": [
"popup.css"
]
},
{
"matches": [
"https://*/*",
"http://*/*"
],
"all_frames": true,
"js": [
"javascripts/content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"svgfiles/aigpt.svg",
"svgfiles/iterate.svg",
"svgfiles/close.svg",
"content.css",
"popup.css",
"settings.html",
"javascripts/setting.js"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"activeTab",
"scripting",
"storage",
"declarativeNetRequest"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
}
}
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}