[tbb-commits] [Git][tpo/applications/tor-browser][base-browser-102.8.0esr-12.0-1] fixup! Bug 40253: Explicitly allow NoScript in Private Browsing mode.
Richard Pospesel (@richard)
git at gitlab.torproject.org
Wed Feb 15 18:07:40 UTC 2023
Richard Pospesel pushed to branch base-browser-102.8.0esr-12.0-1 at The Tor Project / Applications / Tor Browser
Commits:
3c99d6af by hackademix at 2023-02-15T18:06:33+00:00
fixup! Bug 40253: Explicitly allow NoScript in Private Browsing mode.
Bug 41598: Prevent NoScript from being removed/disabled.
Bug 40253: Explicitly allow NoScript in Private Browsing mode.
- - - - -
1 changed file:
- toolkit/mozapps/extensions/internal/XPIDatabase.jsm
Changes:
=====================================
toolkit/mozapps/extensions/internal/XPIDatabase.jsm
=====================================
@@ -854,6 +854,15 @@ class AddonInternal {
}
}
+ // Bug 41598: prevent NoScript from being uninstalled/disabled
+ if (this.id === "{73a6fe31-595d-460b-a920-fcc0f8843232}") {
+ permissions &= ~(
+ AddonManager.PERM_CAN_UNINSTALL |
+ AddonManager.PERM_CAN_DISABLE |
+ AddonManager.PERM_CAN_CHANGE_PRIVATEBROWSING_ACCESS
+ );
+ }
+
return permissions;
}
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3c99d6afc11f56366b18dab8fa3a9522a808537f
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3c99d6afc11f56366b18dab8fa3a9522a808537f
You're receiving this email because of your account on gitlab.torproject.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.torproject.org/pipermail/tbb-commits/attachments/20230215/d4cb109f/attachment-0001.htm>
More information about the tbb-commits
mailing list