Flutter Search Extension
A handy browser extension to search official docs in the address bar (omnibox)
Wat is Flutter Search Extension?
Flutter Search Extension is een Chrome-extensie ontwikkeld door UV, en de belangrijkste functie is "A handy browser extension to search official docs in the address bar (omnibox)".
Extensie Screenshots
Download het CRX-bestand van de extensie Flutter Search Extension
Download Flutter Search Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Support Chinese mirror. Guide: Input "ft" and press tab key in address bar. 在地址栏中输入"ft"并按下tab键,然后输入关键字进行搜索 (https://github.com/CodeNeverStops/flutter-search-extension)
Basisinformatie over de Extensie
Naam | Flutter Search Extension |
ID | mkhgdehlebdhbdmjgclbkcamaicfgjne |
Officiële URL | https://chromewebstore.google.com/detail/flutter-search-extension/mkhgdehlebdhbdmjgclbkcamaicfgjne |
Beschrijving | A handy browser extension to search official docs in the address bar (omnibox) |
Bestandsgrootte | 506 KB |
Aantal Installaties | 1,095 |
Huidige Versie | 0.2 |
Laatst Bijgewerkt | 2019-11-18 |
Publicatiedatum | 2019-11-17 |
Ontwikkelaar | UV |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |