diff --git a/src/ext/conf/ExtConfPatches.js b/src/ext/conf/ExtConfPatches.js index d1464f6..9157d0b 100644 --- a/src/ext/conf/ExtConfPatches.js +++ b/src/ext/conf/ExtConfPatches.js @@ -197,6 +197,24 @@ const ExtensionConfPatch = [ } } } + }, { + forVersion: '5.1.6', + updateFn: (userOptions, defaultOptions) => { + userOptions.sites['www.disneyplus.com'].DOM = { + "player": { + "manual": true, + "querySelectors": ".btm-media-player", + "additionalCss": "", + "useRelativeAncestor": false, + "playerNodeCss": "" + }, + "video": { + "manual": true, + "querySelectors": ".btm-media-client-element", + "additionalCss": "" + } + } + } } ]; diff --git a/src/ext/conf/ExtensionConf.ts b/src/ext/conf/ExtensionConf.ts index c675a7b..f53862e 100644 --- a/src/ext/conf/ExtensionConf.ts +++ b/src/ext/conf/ExtensionConf.ts @@ -1063,14 +1063,18 @@ const ExtensionConf: SettingsInterface = { videoAlignment: VideoAlignmentType.Default, keyboardShortcutsEnabled: ExtensionMode.Default, arPersistence: true, // persist aspect ratio between different videos - DOM: { + "DOM": { "player": { "manual": true, - "querySelectors": ".btm-media-client-element", + "querySelectors": ".btm-media-player", "additionalCss": "", "useRelativeAncestor": false, - "videoAncestor": 1, "playerNodeCss": "" + }, + "video": { + "manual": true, + "querySelectors": ".btm-media-client-element", + "additionalCss": "" } }, css: ".hudson-container { height: 100%; }",