Omi

Omi helps you remember your activities on the web. Never forget any content you read!

Omiคืออะไร?

Omi เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Omi.ai และคุณลักษณะหลักของมันคือ "Omi helps you remember your activities on the web. Never forget any content you read!"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        🚀 Omi - Your Web Surfing Sidekick! 🚀

Ever feel like you're juggling 101 tabs and sticky notes while you're on a research mission? 🤹‍♂️ Say goodbye to those days with Omi, your new favorite Chrome extension!

Think of Omi as your personal research assistant who never needs a coffee break ☕. With just a click of the 'Crunch Time' button, Omi will remember every. single. page. you visit, saving the URL and content for you. It's like having a photographic memory, but you don't need to be a superhuman! 💪🧠💾

But wait, there's more! 🎁 Omi doesn't just remember stuff, it helps you interact with it too! You can ask Omi questions about the materials you've read, and it will give you answers along with a reference to where it found the information! No more, "Wait, where did I read that again?" moments! 🕵️‍♀️🔍

Need to generate content? Omi's got you! 📝 Go wild with free-form writing, or let Omi smartly source from the websites you've visited. It's like having a professional writer in your pocket, but without the hefty price tag! 💰🚫

Concerned about privacy and security? Fret not! 🛡️ Omi is a local hero, storing all data locally and only interacting with OpenAI's API. Your API Key is kept safe and sound in your browser storage.

What's the secret sauce? Omi uses OpenAI's GPT-3.5 to slice and dice the content you see into vectors and then hunts down the info you need like a bloodhound. 🐕🔬

So, what are you waiting for? Embrace the future of web browsing with Omi - your web surfing sidekick. 🏄‍♂️

Join the Omi revolution today! 🎉 Remember, with Omi, the world of the web is at your fingertips. 👩‍💻🌐👨‍💻

P.S. Omi is so lightweight, it's like it's not even there! 🪶🌬️                    

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

ชื่อ Omi Omi
ID knaedeenjbpelhnbcngmdklnmodfdcpb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/omi/knaedeenjbpelhnbcngmdklnmodfdcpb
คำอธิบาย Omi helps you remember your activities on the web. Never forget any content you read!
ขนาดไฟล์ 4.59 MB
จำนวนการติดตั้ง 14
เวอร์ชันปัจจุบัน 0.0.6
อัปเดตครั้งล่าสุด 2023-06-07
วันที่เผยแพร่ 2023-05-06
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Omi.ai
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Omi",
    "description": "Omi helps you remember your activities on the web. Never forget any content you read!",
    "version": "0.0.6",
    "manifest_version": 3,
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                "content_script.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "all_frame_script.js"
            ]
        }
    ],
    "commands": {
        "invoke_chat_window": {
            "suggested_key": {
                "default": "Alt+O",
                "mac": "Alt+O"
            },
            "description": "Open the chat window"
        }
    },
    "permissions": [
        "storage",
        "notifications",
        "webRequest"
    ],
    "host_permissions": [
        ""
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "sandbox": [],
    "content_security_policy": {
        "sandbox": "sandbox allow-scripts script-src 'self' 'unsafe-eval'; img-src data:"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "viewer.html",
                "floating_chat.html",
                "tokenizer\/encoder.json",
                "tokenizer\/vocab.bpe",
                "\/icons\/48x.png",
                "inject_script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_title": "Omi - click to view",
        "default_icon": {
            "16": "\/icons\/16x.png",
            "32": "\/icons\/32x.png",
            "48": "\/icons\/48x.png",
            "128": "\/icons\/128x.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "\/icons\/16x.png",
        "32": "\/icons\/32x.png",
        "48": "\/icons\/48x.png",
        "128": "\/icons\/128x.png"
    }
}