Omi

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

Co to jest Omi?

Omi to rozszerzenie Chrome opracowane przez Omi.ai, a jego główną funkcją jest „Omi helps you remember your activities on the web. Never forget any content you read!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Omi

Pobierz pliki rozszerzeń Omi w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Omi Omi
ID knaedeenjbpelhnbcngmdklnmodfdcpb
Oficjalny URL https://chromewebstore.google.com/detail/omi/knaedeenjbpelhnbcngmdklnmodfdcpb
Opis Omi helps you remember your activities on the web. Never forget any content you read!
Rozmiar pliku 4.59 MB
Liczba instalacji 14
Aktualna Wersja 0.0.6
Ostatnia Aktualizacja 2023-06-07
Data Publikacji 2023-05-06
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Omi.ai
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}