Shift-Ctrl-F: Semantic Search for the Browser

Search the information available on a webpage using natural language.

O que é Shift-Ctrl-F: Semantic Search for the Browser?

Shift-Ctrl-F: Semantic Search for the Browser é uma extensão do Chrome desenvolvida por https://modelzoo.dev, e sua principal característica é "Search the information available on a webpage using natural language.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Shift-Ctrl-F: Semantic Search for the Browser

Baixe arquivos de extensão Shift-Ctrl-F: Semantic Search for the Browser no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Shift-Ctrl-F: Semantic Search for the Browser Shift-Ctrl-F: Semantic Search for the Browser
ID alnafbdjkoiljlomnbcknehahbjoiped
URL Oficial https://chromewebstore.google.com/detail/shift-ctrl-f-semantic-sea/alnafbdjkoiljlomnbcknehahbjoiped
Descrição Search the information available on a webpage using natural language.
Tamanho do Arquivo 297 KB
Contagem de Instalações 436
Versão Atual 0.1.0
Última Atualização 2020-09-02
Data de Publicação 2020-08-30
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor https://modelzoo.dev
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://modelzoo.dev
URL da Página de Política de Privacidade https://modelzoo.dev/say-less-privacy.html
Idiomas Suportados 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"
            }
        }
    }
}