tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

fxsuggest.fml.yaml (1262B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 about:
      6  description: Nimbus Feature Manifest for the Firefox Suggest feature.
      7  android:
      8    package: mozilla.components.feature.fxsuggest
      9    class: .FxSuggestNimbus
     10 channels:
     11  - debug
     12  - release
     13 features:
     14  awesomebar-suggestion-provider:
     15    description: Configuration for the Firefox Suggest awesomebar suggestion provider.
     16    variables:
     17      available-suggestion-types:
     18        description: >
     19          A map of suggestion types to booleans that indicate whether or not the provider should
     20          return suggestions of those types.
     21        type: Map<SuggestionType, Boolean>
     22        default: {
     23          "amp": false,
     24          "ampMobile": false,
     25          "wikipedia": true,
     26        }
     27 enums:
     28  SuggestionType:
     29    description: The type of a Firefox Suggest search suggestion.
     30    variants:
     31      amp:
     32        description: A Firefox Suggestion from adMarketplace.
     33      ampMobile:
     34        description: A firefox Suggestion from adMarketplace specifically for mobile.
     35      wikipedia:
     36        description: A Firefox Suggestion for a Wikipedia page.