Mirage

Talk to your email!

Co to jest Mirage?

Mirage to rozszerzenie Chrome opracowane przez https://mirageml.com, a jego główną funkcją jest „Talk to your email!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Mirage

Pobierz pliki rozszerzeń Mirage w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Mirage Mirage
ID bdlcjiodcdfodcoafejfgcflajmnnneg
Oficjalny URL https://chromewebstore.google.com/detail/mirage/bdlcjiodcdfodcoafejfgcflajmnnneg
Opis Talk to your email!
Rozmiar pliku 411 KB
Liczba instalacji 111
Aktualna Wersja 0.0.27
Ostatnia Aktualizacja 2023-12-19
Data Publikacji 2023-12-13
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://mirageml.com
E-mail [email protected]
Typ Płatności in_app
Strona Rozszerzenia https://mirageml.com
Adres URL Strony Pomocy https://twitter.com/mirage_ml
Adres URL Strony Polityki Prywatności https://mirageml.com/privacy
Obsługiwane Języki 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"
    ]
}