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은(는) https://modelzoo.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search the information available on a webpage using natural language."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Shift-Ctrl-F: Semantic Search for the Browser 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 yoavz@modelzoo.dev
결제 유형 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"
            }
        }
    }
}