Inspect and view changes in Type-in | ChatGPT email assistant | GPT-3 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": "Type-in | ChatGPT email assistant | GPT-3",
"version": "2.0.2",
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"scripting"
],
"action": {
"default_icon": "logo.png"
},
"host_permissions": [
"https://mail.google.com/"
],
"manifest_version": 3
}