definitelytyped-firefox-webext-browser
definitelytyped-firefox-webext-browser copied to clipboard
Script to generate TypeScript definitions for WebExtension Development in FireFox
Hello, Firefox 101 added Scripting API - this is the new API in the MV3 that replaced `tabs.executeScript`: https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/scripting Could you regenerate the types to include it? **Big THANK YOU...
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
I have this code, and it has types for callback:  But when I want to keep the callback as a separate function, I don't know how to set the...
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...
This is a Chrome-only API: https://developer.chrome.com/docs/extensions/reference/identity/#method-getAuthToken Currently mistyped as ```ts /** * Gets an OAuth2 access token using the client ID and scopes specified in the oauth2 section of manifest.json....
Could this be used to generate types also for Thunderbird? I mean for the new WebExtension API in the new Thunderbird 78: https://webextension-api.thunderbird.net/en/78/index.html (it's mostly the same API but with...
The following property, defined in the browser.menus schema, represents an array of either integers or strings: "menuIds": { "description": "A list of IDs of the menu items that were shown.",...
from https://github.com/bomjacob/definitelytyped-firefox-webext-browser/pull/3#issuecomment-350572602 some of the documentation has code links like `The $(ref:runtime.onConnect) event is fired [...]`, but currently they're just turned into `inline code` is there a standard code link...
based on the [readme](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/README.md#common-mistakes)
Hello, First, thank you for new update! I've checked it in all my projects and found only one issue: ```ts declare namespace browser.scripting { func?: () => void | undefined;...