Flutter Search Extension
A handy browser extension to search official docs in the address bar (omnibox)
Flutter Search Extension क्या है?
Flutter Search Extension UV द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A handy browser extension to search official docs in the address bar (omnibox)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Flutter Search Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |