Flutter Search Extension

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

Что такое Flutter Search Extension?

Flutter Search Extension - это расширение Chrome, разработанное UV, и его основная функция - "A handy browser extension to search official docs in the address bar (omnibox)".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Flutter Search Extension

Скачайте файлы расширений 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
Электронная почта [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"
    ]
}