Falcon

To activate, type 'f' followed by a tab or space into the Omnibox. Then enter your term and press enter to submit.

O que é Falcon?

Falcon é uma extensão do Chrome desenvolvida por Logan Engstrom, e sua principal característica é "To activate, type 'f' followed by a tab or space into the Omnibox. Then enter your term and press enter to submit.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Falcon

Baixe arquivos de extensão Falcon 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

                        Flexible full text browsing history search in Chrome! Press f, then space or tab, in the omnibar to start searching your previously visited websites! Every time you visit a website in Chrome, Falcon indexes all the text on the page so that the site can be easily found later.

More information here: https://github.com/lengstrom/falcon/. 

**If you know how, I strongly recommend installing "from source" manually rather than through the Chrome Webstore**                    

Informações Básicas da Extensão

Nome Falcon Falcon
ID mmifbbohghecjloeklpbinkjpbplfalb
URL Oficial https://chromewebstore.google.com/detail/falcon/mmifbbohghecjloeklpbinkjpbplfalb
Descrição To activate, type 'f' followed by a tab or space into the Omnibox. Then enter your term and press enter to submit.
Tamanho do Arquivo 323 KB
Contagem de Instalações 6,557
Versão Atual 0.2.4
Última Atualização 2019-03-08
Data de Publicação 2019-03-08
Classificação 4.58/5 Total de 33 Avaliações
Desenvolvedor Logan Engstrom
Tipo de Pagamento free
Site da Extensão http://github.com/lengstrom/falcon
URL da Página de Ajuda http://github.com/lengstrom/falcon/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Falcon",
    "short_name": "Falcon",
    "description": "To activate, type 'f' followed by a tab or space into the Omnibox. Then enter your term and press enter to submit.",
    "version": "0.2.4",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/lib\/stopwords_res.js",
                "js\/lib\/readability.js",
                "js\/relevanttext.js",
                "js\/content.js"
            ]
        }
    ],
    "permissions": [
        "unlimitedStorage",
        "",
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_icon": {
            "19": "assets\/19.png",
            "38": "assets\/38.png"
        },
        "default_popup": "assets\/popup.html"
    },
    "icons": {
        "16": "assets\/16.png",
        "48": "assets\/48.png",
        "128": "assets\/128.png"
    },
    "omnibox": {
        "keyword": "f"
    },
    "options_page": "assets\/preferences.html",
    "background": {
        "scripts": [
            "js\/blacklist2.js",
            "js\/lib\/chrono.min.js",
            "js\/textprocessing.js",
            "js\/queryparser.js",
            "js\/background.js"
        ]
    }
}