Omi

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

Wat is Omi?

Omi is een Chrome-extensie ontwikkeld door Omi.ai, en de belangrijkste functie is "Omi helps you remember your activities on the web. Never forget any content you read!".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Omi

Download Omi-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Omi Omi
ID knaedeenjbpelhnbcngmdklnmodfdcpb
Officiële URL https://chromewebstore.google.com/detail/omi/knaedeenjbpelhnbcngmdklnmodfdcpb
Beschrijving Omi helps you remember your activities on the web. Never forget any content you read!
Bestandsgrootte 4.59 MB
Aantal Installaties 14
Huidige Versie 0.0.6
Laatst Bijgewerkt 2023-06-07
Publicatiedatum 2023-05-06
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Omi.ai
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}