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.runtime;
/**
An object containing information about the current browser.
**/
typedef BrowserInfo = {
/**
The name of the browser, for example 'Firefox'.
**/
var name : String;
/**
The name of the browser vendor, for example 'Mozilla'.
**/
var vendor : String;
/**
The browser's version, for example '42.0.0' or '0.8.1pre'.
**/
var version : String;
/**
The browser's build ID/date, for example '20160101'.
**/
var buildID : String;
};