Skip to content

Commit

Permalink
Missing webRequest and webRequestBlocking permissions on firefox android
Browse files Browse the repository at this point in the history
  • Loading branch information
killergerbah committed Apr 24, 2024
1 parent ab92082 commit b3f4b38
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion extension/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ const manifestWithoutLocalhostPatterns = (manifest) => {

const manifestModifiedForFirefoxAndroid = (manifest) => {
delete manifest['commands'];
return { ...manifestModifiedForFirefox(manifest), permissions: ['tabs', 'storage'] };
return {
...manifestModifiedForFirefox(manifest),
permissions: ['tabs', 'storage', 'webRequest', 'webRequestBlocking'],
};
};

const manifestModifiedForFirefox = (manifest) => {
Expand Down

0 comments on commit b3f4b38

Please sign in to comment.