Flutter Search Extension

A handy browser extension to search official docs in the address bar (omnibox)

What is Flutter Search Extension?

Flutter Search Extension is a Chrome extension developed by UV, and its main feature is "A handy browser extension to search official docs in the address bar (omnibox)".

Extension Screenshots

screenshot

Download Flutter Search Extension Extension CRX File

Download Flutter Search Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Support Chinese mirror.

Guide:
Input "ft" and press tab key in address bar.
在地址栏中输入"ft"并按下tab键,然后输入关键字进行搜索

(https://github.com/CodeNeverStops/flutter-search-extension)                    

Extension Basic Information

Name Flutter Search Extension Flutter Search Extension
ID mkhgdehlebdhbdmjgclbkcamaicfgjne
Official URL https://chromewebstore.google.com/detail/flutter-search-extension/mkhgdehlebdhbdmjgclbkcamaicfgjne
Description A handy browser extension to search official docs in the address bar (omnibox)
File Size 506 KB
Installation Count 1,095
Current Version 0.2
Last Updated 2019-11-18
Publish Date 2019-11-17
Developer UV
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Flutter Search Extension",
    "description": "A handy browser extension to search official docs in the address bar (omnibox)",
    "version": "0.2",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon.png",
            "48": "icon.png",
            "128": "icon.png"
        },
        "default_popup": "popup.html",
        "default_title": "A handy browser extension to search official docs in the address bar (omnibox)"
    },
    "omnibox": {
        "keyword": "ft"
    },
    "background": {
        "scripts": [
            "settings.js",
            "search.js",
            "search-index.js",
            "omnibox.js",
            "main.js"
        ]
    },
    "permissions": [
        "tabs"
    ]
}