Omni

Chrome sidebar with real time information retrieval.

Omniคืออะไร?

Omni เป็นส่วนขยายของ Chrome ที่พัฒนาโดย create.omniscience และคุณลักษณะหลักของมันคือ "Chrome sidebar with real time information retrieval."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Chrome sidebar that brings up the most relevant information as you read or write in your browser.

Omni allows you to conduct real-time search queries proactively over any text of your choice, whether it be websites, books or private documents.  This search is at the level of sentences which can be brought up as you type or in response to your highlighting. Information will appear at the right hand side of your page once you've opened the extension.


Quick Instructions
--------------------------------

While browsing, open the extension by clicking the Omni logo or using the keyboard shortcut Alt+F (Option+F on Mac). Now you can trigger retrievals by
- Highlighting any text on the page. 
- Typing into any textbox on the page.
- Typing into the textbox at the top of the sidebar.

Results will be displayed in the sidebar on the right of the screen. You can click on a result to see it in the original context, then click again to hide it.

You can choose which dataset to get search results from by selecting it from the drop-down menu. You can even upload your own private dataset (we support most common document formats) by clicking the “Datasets” button in the top right hand corner of the sidebar, logging in, and following the instructions.

Tips:
- Currently retrieval quality is highest for queries of around 1-3 sentences. For shorter queries, add more context to increase the quality of results.
- Pin Consilience to make it easy to open and close it quickly.
- Highlighting and typing will not work for pages that use advanced canvas-based text rendering, most prominently Google Docs. We’re working on it!


Why Omni?
-------------------------------

Omni brings information retrieval into the mechanics of creation. Typical search workflows have the creator break out of their work to a new website, search for a document, skim or read the document for relevant information, and then go back to their task to use that information to direct some decision. The real-time workflow will bring the snippet of decision-relevant information directly to the interface where creation is occurring.

Semantic similarity in real time means that when you author your great work, the concordant ideas written by literary & intellectual titans deepens your ideation. Attaching your own personal notes, you'll see the way that your thought on a subject has evolved over time, bringing your related ideas to mind where you had once forgotten them.                    

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

ชื่อ Omni Omni
ID mlcoidohpcjfjnknjjggenjccckcgmpn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/omni/mlcoidohpcjfjnknjjggenjccckcgmpn
คำอธิบาย Chrome sidebar with real time information retrieval.
ขนาดไฟล์ 1.81 MB
จำนวนการติดตั้ง 791
เวอร์ชันปัจจุบัน 0.1.37
อัปเดตครั้งล่าสุด 2023-07-28
วันที่เผยแพร่ 2021-06-30
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา create.omniscience
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://omnilabs.ai
URL หน้าช่วยเหลือ https://omnilabs.ai/support
URL หน้านโยบายความเป็นส่วนตัว https://omnilabs.ai/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Chrome sidebar with real time information retrieval.",
    "version": "0.1.37",
    "name": "Omni",
    "icons": {
        "16": "favicon16X16.png",
        "48": "favicon32X32.png",
        "128": "favicon128X128.png"
    },
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "128": "favicon128X128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "content.styles.css",
        "favicon16X16.png",
        "favicon32X32.png",
        "favicon128X128.png"
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "commands": {
        "Mount-Unmount": {
            "suggested_key": {
                "default": "Alt+C",
                "mac": "Alt+F"
            },
            "description": "Enable Omni on current tab"
        }
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}