Skip to content

Commit

Permalink
mark as firefox android compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
dimdenGD committed Oct 11, 2023
1 parent f7e0e12 commit 4d687b7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pack.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ copyDir('./', '../OldTwitterFirefox').then(async () => {
manifest.background.scripts = ['scripts/background.js'];
manifest.web_accessible_resources = manifest.web_accessible_resources[0].resources;
manifest.permissions = manifest.permissions.filter(p => p !== 'declarativeNetRequest' && p !== 'contextMenus' && p !== 'scripting');
manifest.browser_specific_settings = {
"gecko": {
"strict_min_version": "60.0"
},
"gecko_android": {
"strict_min_version": "60.0"
}
}
manifest.permissions = [
...manifest.permissions,
...manifest.host_permissions,
Expand Down

0 comments on commit 4d687b7

Please sign in to comment.