Falcon

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

Cos'è Falcon?

Falcon è un'estensione di Chrome sviluppata da Logan Engstrom, e la sua funzione principale è "To activate, type 'f' followed by a tab or space into the Omnibox. Then enter your term and press enter to submit.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Falcon

Scarica i file di estensione Falcon in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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**                    

Informazioni di Base sull'Estensione

Nome Falcon Falcon
ID mmifbbohghecjloeklpbinkjpbplfalb
URL Ufficiale https://chromewebstore.google.com/detail/falcon/mmifbbohghecjloeklpbinkjpbplfalb
Descrizione To activate, type 'f' followed by a tab or space into the Omnibox. Then enter your term and press enter to submit.
Dimensione del File 323 KB
Conteggio Installazioni 6,557
Versione Corrente 0.2.4
Ultimo Aggiornamento 2019-03-08
Data di Pubblicazione 2019-03-08
Valutazione 4.58/5 Totale 33 Valutazioni
Sviluppatore Logan Engstrom
Tipo di Pagamento free
Sito Web dell'Estensione http://github.com/lengstrom/falcon
URL della Pagina di Aiuto http://github.com/lengstrom/falcon/
Lingue Supportate 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"
        ]
    }
}