Omi

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

Was ist Omi?

Omi ist eine Chrome-Erweiterung, die von Omi.ai entwickelt wurde, und ihr Hauptmerkmal ist "Omi helps you remember your activities on the web. Never forget any content you read!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Omi-Erweiterungs-CRX-Datei herunterladen

Laden Sie Omi-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        🚀 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! 🪶🌬️                    

Grundlegende Informationen zur Erweiterung

Name Omi Omi
ID knaedeenjbpelhnbcngmdklnmodfdcpb
Offizielle URL https://chromewebstore.google.com/detail/omi/knaedeenjbpelhnbcngmdklnmodfdcpb
Beschreibung Omi helps you remember your activities on the web. Never forget any content you read!
Dateigröße 4.59 MB
Installationsanzahl 14
Aktuelle Version 0.0.6
Letztes Update 2023-06-07
Veröffentlichungsdatum 2023-05-06
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Omi.ai
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}