Pier Angelo Vendrame pushed to branch tor-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser
Commits:
-
5ac078b7
by hackademix at 2023-01-31T12:26:37+01:00
1 changed file:
Changes:
| ... | ... | @@ -854,6 +854,15 @@ class AddonInternal { |
| 854 | 854 | }
|
| 855 | 855 | }
|
| 856 | 856 | |
| 857 | + // Bug 41598: prevent NoScript from being uninstalled/disabled
|
|
| 858 | + if (this.id === "{73a6fe31-595d-460b-a920-fcc0f8843232}") {
|
|
| 859 | + permissions &= ~(
|
|
| 860 | + AddonManager.PERM_CAN_UNINSTALL |
|
|
| 861 | + AddonManager.PERM_CAN_DISABLE |
|
|
| 862 | + AddonManager.PERM_CAN_CHANGE_PRIVATEBROWSING_ACCESS
|
|
| 863 | + );
|
|
| 864 | + }
|
|
| 865 | + |
|
| 857 | 866 | return permissions;
|
| 858 | 867 | }
|
| 859 | 868 |