add firefox extension template

This commit is contained in:
2025-08-07 16:03:16 -05:00
parent 6cbb29fed1
commit 5df289ffcb
586 changed files with 13636 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package webextension_polyfill.urlbar;
/**
A query performed in the urlbar.
**/
typedef Query = {
/**
Whether the query's browser context is private.
**/
var isPrivate : Bool;
/**
The maximum number of results shown to the user.
**/
var maxResults : Float;
/**
The query's search string.
**/
var searchString : String;
/**
List of acceptable source types to return.
**/
var sources : Array<SourceType>;
};