Flutter Search Extension

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

Flutter Search Extensionとは何ですか?

Flutter Search ExtensionはUVによって開発されたChromeの拡張機能で、その主な機能は「A handy browser extension to search official docs in the address bar (omnibox)」です。

拡張機能のスクリーンショット

screenshot

Flutter Search Extension拡張機能のCRXファイルをダウンロード

Flutter Search Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Support Chinese mirror.

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

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

拡張機能の基本情報

名前 Flutter Search Extension Flutter Search Extension
ID mkhgdehlebdhbdmjgclbkcamaicfgjne
公式URL https://chromewebstore.google.com/detail/flutter-search-extension/mkhgdehlebdhbdmjgclbkcamaicfgjne
説明 A handy browser extension to search official docs in the address bar (omnibox)
ファイルサイズ 506 KB
インストール数 1,095
現在のバージョン 0.2
最終更新日 2019-11-18
公開日 2019-11-17
開発者 UV
Eメール [email protected]
支払い方法 free
対応言語 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"
    ]
}