Shift-Ctrl-F: Semantic Search for the Browser

Search the information available on a webpage using natural language.

Shift-Ctrl-F: Semantic Search for the Browserคืออะไร?

Shift-Ctrl-F: Semantic Search for the Browser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://modelzoo.dev และคุณลักษณะหลักของมันคือ "Search the information available on a webpage using natural language."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Shift-Ctrl-F: Semantic Search for the Browser

ดาวน์โหลดไฟล์ส่วนขยาย Shift-Ctrl-F: Semantic Search for the Browser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Uses MobileBERT fine-tuned on SQuAD via TensorFlowJS to search for answers and mark relevant elements on the web page. This extension is open-sourced at https://github.com/model-zoo/shift-ctrl-f. 

This extension is an experiment. Deep learning models like BERT are powerful but may return unpredictable and/or biased results that are tough to interpret. Please apply best judgement when analyzing search results.

HOW TO USE:

1) Open the extension popup via toolbar or shortcut (Shift-Ctrl-F)
2) Type in a natural language query into the search bar
3) Press enter and wait for the model to return results.                    

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

ชื่อ Shift-Ctrl-F: Semantic Search for the Browser Shift-Ctrl-F: Semantic Search for the Browser
ID alnafbdjkoiljlomnbcknehahbjoiped
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/shift-ctrl-f-semantic-sea/alnafbdjkoiljlomnbcknehahbjoiped
คำอธิบาย Search the information available on a webpage using natural language.
ขนาดไฟล์ 297 KB
จำนวนการติดตั้ง 436
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2020-09-02
วันที่เผยแพร่ 2020-08-30
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://modelzoo.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://modelzoo.dev
URL หน้านโยบายความเป็นส่วนตัว https://modelzoo.dev/say-less-privacy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Search the information available on a webpage using natural language.",
    "version": "0.1.0",
    "manifest_version": 2,
    "name": "Shift-Ctrl-F: Semantic Search for the Browser",
    "short_name": "Shift-Ctrl-F",
    "author": "Yoav Zimmerman ",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Shift+Ctrl+F",
                "mac": "Shift+Ctrl+F"
            }
        }
    }
}