Falcon

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

Falconとは何ですか?

FalconはLogan Engstromによって開発されたChromeの拡張機能で、その主な機能は「To activate, type 'f' followed by a tab or space into the Omnibox. Then enter your term and press enter to submit.」です。

拡張機能のスクリーンショット

screenshot

Falcon拡張機能のCRXファイルをダウンロード

Falcon拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Falcon Falcon
ID mmifbbohghecjloeklpbinkjpbplfalb
公式URL https://chromewebstore.google.com/detail/falcon/mmifbbohghecjloeklpbinkjpbplfalb
説明 To activate, type 'f' followed by a tab or space into the Omnibox. Then enter your term and press enter to submit.
ファイルサイズ 323 KB
インストール数 6,557
現在のバージョン 0.2.4
最終更新日 2019-03-08
公開日 2019-03-08
評価 4.58/5 合計 33 レビュー
開発者 Logan Engstrom
支払い方法 free
拡張機能のウェブサイト http://github.com/lengstrom/falcon
ヘルプページのURL http://github.com/lengstrom/falcon/
対応言語 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"
        ]
    }
}