Mirage

Talk to your email!

Mirage là gì?

Mirage là một tiện ích mở rộng Chrome được phát triển bởi https://mirageml.com, và tính năng chính của nó là "Talk to your email!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mirage

Tải xuống các tệp mở rộng Mirage dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mirage Mirage
ID bdlcjiodcdfodcoafejfgcflajmnnneg
URL Chính Thức https://chromewebstore.google.com/detail/mirage/bdlcjiodcdfodcoafejfgcflajmnnneg
Mô tả Talk to your email!
Kích Thước Tệp 411 KB
Số Lần Cài Đặt 111
Phiên Bản Hiện Tại 0.0.27
Cập Nhật Lần Cuối 2023-12-19
Ngày Phát Hành 2023-12-13
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://mirageml.com
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://mirageml.com
URL Trang Trợ Giúp https://twitter.com/mirage_ml
URL Trang Chính Sách Bảo Mật https://mirageml.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}