Flutter Search Extension
A handy browser extension to search official docs in the address bar (omnibox)
Cos'è Flutter Search Extension?
Flutter Search Extension è un'estensione di Chrome sviluppata da UV, e la sua funzione principale è "A handy browser extension to search official docs in the address bar (omnibox)".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Flutter Search Extension
Scarica i file di estensione Flutter Search Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Support Chinese mirror. Guide: Input "ft" and press tab key in address bar. 在地址栏中输入"ft"并按下tab键,然后输入关键字进行搜索 (https://github.com/CodeNeverStops/flutter-search-extension)
Informazioni di Base sull'Estensione
Nome | Flutter Search Extension |
ID | mkhgdehlebdhbdmjgclbkcamaicfgjne |
URL Ufficiale | https://chromewebstore.google.com/detail/flutter-search-extension/mkhgdehlebdhbdmjgclbkcamaicfgjne |
Descrizione | A handy browser extension to search official docs in the address bar (omnibox) |
Dimensione del File | 506 KB |
Conteggio Installazioni | 1,095 |
Versione Corrente | 0.2 |
Ultimo Aggiornamento | 2019-11-18 |
Data di Pubblicazione | 2019-11-17 |
Sviluppatore | UV |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |