Mirage

Talk to your email!

What is Mirage?

Mirage is a Chrome extension developed by https://mirageml.com, and its main feature is "Talk to your email!".

Extension Screenshots

screenshot
screenshot

Download Mirage Extension CRX File

Download Mirage extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This is a side panel extension that generates emails for you.

Once you install the extension, follow these steps:
- Navigate to Gmail or Superhuman
- Give the Mirage extension microphone access.
- Open the Mirage extension in the side panel
- Select an Email (Mirage will automatically identify the thread)
- Speak or type your thoughts
- Generate!                    

Extension Basic Information

Name Mirage Mirage
ID bdlcjiodcdfodcoafejfgcflajmnnneg
Official URL https://chromewebstore.google.com/detail/mirage/bdlcjiodcdfodcoafejfgcflajmnnneg
Description Talk to your email!
File Size 411 KB
Installation Count 111
Current Version 0.0.27
Last Updated 2023-12-19
Publish Date 2023-12-13
Rating 5.00/5 Total 2 Ratings
Developer https://mirageml.com
Email [email protected]
Payment Type in_app
Extension Website https://mirageml.com
Help Page URL https://twitter.com/mirage_ml
Privacy Policy Page URL https://mirageml.com/privacy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mirage",
    "description": "Talk to your email!",
    "version": "0.0.27",
    "icons": {
        "16": "assets\/icons\/16.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "action": {
        "default_title": "Mirage",
        "default_icon": "assets\/icons\/16.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "requestPermissions.html",
                "requestPermissions.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "inject.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/mail\/*",
                "https:\/\/www.mail.google.com\/mail\/*",
                "https:\/\/mail.superhuman.com\/*",
                "https:\/\/www.mail.superhuman.com\/*"
            ]
        },
        {
            "js": [
                "googleContentScript.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/mail\/*",
                "https:\/\/www.mail.google.com\/mail\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "side_panel": {
        "default_path": "sidepanel.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "sidePanel"
    ]
}