Mirage

Talk to your email!

Hvad er Mirage?

Mirage er en Chrome-udvidelse udviklet af https://mirageml.com, og dens hovedfunktion er "Talk to your email!".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Mirage-udvidelses-CRX-fil

Download Mirage-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Mirage Mirage
ID bdlcjiodcdfodcoafejfgcflajmnnneg
Officiel URL https://chromewebstore.google.com/detail/mirage/bdlcjiodcdfodcoafejfgcflajmnnneg
Beskrivelse Talk to your email!
Filstørrelse 411 KB
Antal Installationer 111
Nuværende Version 0.0.27
Senest Opdateret 2023-12-19
Udgivelsesdato 2023-12-13
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler https://mirageml.com
E-mail [email protected]
Betalingsmetode in_app
Udvidelseswebsted https://mirageml.com
Hjælpeside-URL https://twitter.com/mirage_ml
URL til Fortrolighedspolitik Side https://mirageml.com/privacy
Understøttede Sprog 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"
    ]
}