Falcon

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

Wat is Falcon?

Falcon is een Chrome-extensie ontwikkeld door Logan Engstrom, en de belangrijkste functie is "To activate, type 'f' followed by a tab or space into the Omnibox. Then enter your term and press enter to submit.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Falcon

Download Falcon-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Falcon Falcon
ID mmifbbohghecjloeklpbinkjpbplfalb
Officiële URL https://chromewebstore.google.com/detail/falcon/mmifbbohghecjloeklpbinkjpbplfalb
Beschrijving To activate, type 'f' followed by a tab or space into the Omnibox. Then enter your term and press enter to submit.
Bestandsgrootte 323 KB
Aantal Installaties 6,557
Huidige Versie 0.2.4
Laatst Bijgewerkt 2019-03-08
Publicatiedatum 2019-03-08
Beoordeling 4.58/5 Totaal 33 Beoordelingen
Ontwikkelaar Logan Engstrom
Betalingswijze free
Extensiewebsite http://github.com/lengstrom/falcon
Help Pagina-URL http://github.com/lengstrom/falcon/
Ondersteunde Talen 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"
        ]
    }
}