Omi

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

Vad är Omi?

Omi är en Chrome-tillägg utvecklad av Omi.ai, och dess huvudfunktion är "Omi helps you remember your activities on the web. Never forget any content you read!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Omi-förlängningens CRX-fil

Ladda ner Omi-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Omi Omi
ID knaedeenjbpelhnbcngmdklnmodfdcpb
Officiell webbadress https://chromewebstore.google.com/detail/omi/knaedeenjbpelhnbcngmdklnmodfdcpb
Beskrivning Omi helps you remember your activities on the web. Never forget any content you read!
Filstorlek 4.59 MB
Antal Installationer 14
Aktuell Version 0.0.6
Senast Uppdaterad 2023-06-07
Publiceringsdatum 2023-05-06
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Omi.ai
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}