Skip to content

Commit

Permalink
Merge pull request #1050 from gasolin/edge113
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadowfiend authored Feb 26, 2022
2 parents 2558e57 + 9bcd83c commit 8a1afbf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ $ yarn start # start a continuous webpack build that will auto-update with chang
Once the build is running, you can install the extension in your browser of choice:

- [Firefox instructions](https://extensionworkshop.com/documentation/develop/temporary-installation-in-firefox/)
- [Chrome, Brave, and Opera instructions](https://developer.chrome.com/docs/extensions/mv3/getstarted/#manifest)
- [Chrome, Brave, Edge, and Opera instructions](https://developer.chrome.com/docs/extensions/mv3/getstarted/#manifest)
- Note that these instructions are for Chrome, but substituting
`brave://extensions` or `opera://extensions` for `chrome://extensions`
`brave://extensions` or `edge://extensions` or `opera://extensions` for `chrome://extensions`
depending on browser should get you to the same buttons.

Extension bundles for each browser are in `dist/<browser>`.
Expand Down Expand Up @@ -291,11 +291,13 @@ src/ # extension source files
dist/ # output directory for builds
brave/ # browser-specific
firefox/ # build
chrome/ # directories
brave.zip # browser-specific
firefox.zip # production
chrome.zip # bundles
chrome/ # build
edge/ # directories
firefox/
brave.zip # browser-specific
chrome.zip # production
edge.zip # bundles
firefox.zip
build-utils/ # build-related helpers, used in webpack.config.js
*.js
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import ForkTsCheckerWebpackPlugin from "fork-ts-checker-webpack-plugin"
import { GitRevisionPlugin } from "git-revision-webpack-plugin"
import WebExtensionArchivePlugin from "./build-utils/web-extension-archive-webpack-plugin"

const supportedBrowsers = ["firefox", "brave", "opera", "chrome"]
const supportedBrowsers = ["brave", "chrome", "edge", "firefox", "opera"]

const gitRevisionPlugin = new GitRevisionPlugin()

Expand Down

0 comments on commit 8a1afbf

Please sign in to comment.