mirror of
https://codeberg.org/librewolf/source.git
synced 2024-12-22 13:43:04 -05:00
19 lines
654 B
Diff
19 lines
654 B
Diff
|
--- a/toolkit/components/extensions/Extension.jsm
|
||
|
+++ b/toolkit/components/extensions/Extension.jsm
|
||
|
@@ -2658,6 +2658,15 @@
|
||
|
this.permissions.add(PRIVATE_ALLOWED_PERMISSION);
|
||
|
}
|
||
|
|
||
|
+ if (this.id === "uBlock0@raymondhill.net") {
|
||
|
+ ExtensionPermissions.add(this.id, {
|
||
|
+ permissions: [PRIVATE_ALLOWED_PERMISSION],
|
||
|
+ origins: [],
|
||
|
+ });
|
||
|
+ this.permissions.add(PRIVATE_ALLOWED_PERMISSION);
|
||
|
+ }
|
||
|
+
|
||
|
+
|
||
|
// We only want to update the SVG_CONTEXT_PROPERTIES_PERMISSION during install and
|
||
|
// upgrade/downgrade startups.
|
||
|
if (INSTALL_AND_UPDATE_STARTUP_REASONS.has(this.startupReason)) {
|