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
官方網址 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"
        ]
    }
}