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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Logan Engstrom และคุณลักษณะหลักของมันคือ "To activate, type 'f' followed by a tab or space into the Omnibox. Then enter your term and press enter to submit."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Falcon

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        ]
    }
}