Falcon

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

Falcon là gì?

Falcon là một tiện ích mở rộng Chrome được phát triển bởi Logan Engstrom, và tính năng chính của nó là "To activate, type 'f' followed by a tab or space into the Omnibox. Then enter your term and press enter to submit.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Falcon

Tải xuống các tệp mở rộng Falcon dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Falcon Falcon
ID mmifbbohghecjloeklpbinkjpbplfalb
URL Chính Thức https://chromewebstore.google.com/detail/falcon/mmifbbohghecjloeklpbinkjpbplfalb
Mô tả To activate, type 'f' followed by a tab or space into the Omnibox. Then enter your term and press enter to submit.
Kích Thước Tệp 323 KB
Số Lần Cài Đặt 6,557
Phiên Bản Hiện Tại 0.2.4
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 4.58/5 Tổng số 33 Đánh Giá
Nhà Phát Triển Logan Engstrom
Loại Thanh Toán free
Trang Web Mở Rộng http://github.com/lengstrom/falcon
URL Trang Trợ Giúp http://github.com/lengstrom/falcon/
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}