webextensions-examples icon indicating copy to clipboard operation
webextensions-examples copied to clipboard

Example Firefox add-ons created using the WebExtensions API

Results 86 webextensions-examples issues
Sort by recently updated
recently updated
newest added

What about importing the list of the implemented webextension api from the MDN page to a .md file in this repo ? And attaching real links of mdn to it....

Revised the code so the Theme is checked for a change at the start of every hour. Simplified some of the logic in determining which theme to display.

https://github.com/mdn/webextensions-examples/tree/master/http-response code : ``` function listener(details) { var filter = browser.webRequest.filterResponseData(details.requestId); var decoder = new TextDecoder("utf-8"); var encoder = new TextEncoder(); filter.ondata = event => { var str = decoder.decode(event.data,...

Snippet from this example: https://github.com/mdn/webextensions-examples/blob/master/window-manipulator/window.js#L28 ```js let creating = browser.windows.create(createData); creating.then(() => { console.log("The normal window has been created"); }); ``` I cant see `console.log` message while i am inspecting...

Either the `webextensions-examples/native-messaging/app/ping_pong.json `"path" key should be pointing to the .py file and the `webextensions-examples/native-messaging/check_config_win.py `is incorrect or vice-versa. Currently the `webextensions-examples/native-messaging/check_config_win.py `checks the ping_pong.json file and gets the "path"...

## What's in this pull request? A changed URL as the former one points to an oudated website.

Several of the examples here pull in dependencies for stuff like react, babel, webpack, eslint. They are useful to show how WebExtensions can integrate these technologies, but I think they...

idle
example

Support for PAC-style proxy scripts is going away in Firefox 71 as proxy.register, proxy.unregister and proxy.onProxyError are removed (see [bugzilla](https://bugzilla.mozilla.org/show_bug.cgi?id=1545811)). The proxy-blocker example should be updated to no longer use...

The more the merry. Maybe Vietnamese developer could found it useful, I guess?

Had some confusion and couldn't find doc on Applications manifest entry any longer. Post issue #47 mozilla specific entry `applications` got renamed to more generic `browser_specific_settings` including in part issue...