mirror of
https://github.com/zen-browser/desktop.git
synced 2026-01-20 11:50:43 +00:00
26 lines
951 B
Diff
26 lines
951 B
Diff
diff --git a/toolkit/modules/ActorManagerParent.sys.mjs b/toolkit/modules/ActorManagerParent.sys.mjs
|
|
index 71409e58271802fc506999712519df63eff3b1a6..a136eb21a8abf1697b820ae4ab85224c56b725ec 100644
|
|
--- a/toolkit/modules/ActorManagerParent.sys.mjs
|
|
+++ b/toolkit/modules/ActorManagerParent.sys.mjs
|
|
@@ -666,6 +666,20 @@ if (!Services.prefs.getBoolPref("browser.pagedata.enabled", false)) {
|
|
};
|
|
}
|
|
|
|
+JSWINDOWACTORS.ZenThemeMarketplace = {
|
|
+ parent: {
|
|
+ esModuleURI: "chrome://browser/content/zen-components/actors/ZenThemeMarketplaceParent.sys.mjs",
|
|
+ },
|
|
+ child: {
|
|
+ esModuleURI: "chrome://browser/content/zen-components/actors/ZenThemeMarketplaceChild.sys.mjs",
|
|
+ events: {
|
|
+ DOMContentLoaded: {},
|
|
+ },
|
|
+ },
|
|
+ matches: ["https://*.zen-browser.app/*"],
|
|
+ allFrames: true,
|
|
+};
|
|
+
|
|
if (AppConstants.platform != "android") {
|
|
// Note that GeckoView has another implementation in mobile/android/actors.
|
|
JSWINDOWACTORS.Select = {
|