Inspect and view changes in Open AI ChatGPT for Email - GMPlus source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "__MSG_name__",
"description": "__MSG_description__",
"version": "2.0.21",
"manifest_version": 3,
"default_locale": "en",
"icons": {
"16": "logo.png",
"32": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"host_permissions": [
"https://*.openai.com/",
"https://mail.google.com/*"
],
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "logo.png"
},
"web_accessible_resources": [
{
"resources": [
"logo.png",
"logo_128.png",
"free_bg.png"
],
"matches": [
"https://mail.google.com/*"
]
}
],
"content_scripts": [
{
"css": [
"content-script.css"
],
"matches": [
"https://mail.google.com/*"
],
"js": [
"content-script.js"
],
"run_at": "document_start"
}
]
}