Mirage

Talk to your email!

Mirageคืออะไร?

Mirage เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mirageml.com และคุณลักษณะหลักของมันคือ "Talk to your email!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mirage

ดาวน์โหลดไฟล์ส่วนขยาย Mirage ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Mirage Mirage
ID bdlcjiodcdfodcoafejfgcflajmnnneg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mirage/bdlcjiodcdfodcoafejfgcflajmnnneg
คำอธิบาย Talk to your email!
ขนาดไฟล์ 411 KB
จำนวนการติดตั้ง 111
เวอร์ชันปัจจุบัน 0.0.27
อัปเดตครั้งล่าสุด 2023-12-19
วันที่เผยแพร่ 2023-12-13
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://mirageml.com
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://mirageml.com
URL หน้าช่วยเหลือ https://twitter.com/mirage_ml
URL หน้านโยบายความเป็นส่วนตัว https://mirageml.com/privacy
ภาษาที่รองรับ 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"
    ]
}