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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        ]
    }
}