Flutter Search Extension

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

Qu'est-ce que Flutter Search Extension ?

Flutter Search Extension est une extension Chrome développée par UV, et sa fonction principale est "A handy browser extension to search official docs in the address bar (omnibox)".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Flutter Search Extension

Téléchargez les fichiers d'extension Flutter Search Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Support Chinese mirror.

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

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

Informations de Base sur l'Extension

Nom Flutter Search Extension Flutter Search Extension
ID mkhgdehlebdhbdmjgclbkcamaicfgjne
URL Officiel https://chromewebstore.google.com/detail/flutter-search-extension/mkhgdehlebdhbdmjgclbkcamaicfgjne
Description A handy browser extension to search official docs in the address bar (omnibox)
Taille du Fichier 506 KB
Nombre d'Installations 1,095
Version Actuelle 0.2
Dernière Mise à Jour 2019-11-18
Date de Publication 2019-11-17
Développeur UV
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}