Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Gmail-GPT",
"description": "Automate Professional Email Reply Creation with GMAIL-GPT's FIRST voice-powered email technology",
"version": "1.0.4",
"host_permissions": [
"https:\/\/*.openai.com\/"
],
"permissions": [
"activeTab"
],
"icons": {
"512": ".\/assets\/images\/button_icon_1.png"
},
"action": {
"default_icon": ".\/assets\/images\/button_icon_1.png"
},
"background": {
"service_worker": ".\/js_files\/backgroundScript.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/mail\/*",
"http:\/\/mail.google.com\/mail\/*"
],
"js": [
".\/js_files\/ContentScript.js"
],
"run-at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"\/assets\/images\/bg2.png",
"\/assets\/images\/logo.png",
"\/assets\/images\/button_icon_1.svg",
"\/assets\/images\/loading_img.gif"
],
"matches": [
"<all_urls>"
]
}
]
}