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": "ReplyFast - Gmail AI Extension",
"short_name": "ReplyFast",
"version": "1.0.0",
"author": "Widdy",
"icons": {
"16": "logos\/icon_16.png",
"32": "logos\/icon_32.png",
"48": "logos\/icon_48.png",
"128": "logos\/icon_128.png"
},
"permissions": [
"storage"
],
"action": {
"default_popup": "src\/popup.html"
},
"description": "Write & answer emails 10x faster with ReplyFast powered by GPT4o",
"background": {
"service_worker": "dist\/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/mail.google.com\/*"
],
"js": [
"dist\/extensionInjector.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"dist\/gmailJsLoader.js",
"dist\/extension.js",
"dist\/gmailJsLoader.js.map",
"dist\/extension.js.map"
],
"matches": [
"<all_urls>"
]
}
],
"externally_connectable": {
"ids": [
"ibodkbijfkdmakpbjjhmmkfhaodhlime"
],
"matches": [
"*:\/\/mail.google.com\/*"
],
"accepts_tls_channel_id": false
}
}